Validar cupom
curl --request POST \
--url https://alpa-sistema-api.onrender.com/api/v1/coupons/validate \
--header 'Content-Type: application/json' \
--data '
{
"code": "PROMO10",
"productIds": [
"prod_abc123"
],
"amountCents": 5000
}
'import requests
url = "https://alpa-sistema-api.onrender.com/api/v1/coupons/validate"
payload = {
"code": "PROMO10",
"productIds": ["prod_abc123"],
"amountCents": 5000
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({code: 'PROMO10', productIds: ['prod_abc123'], amountCents: 5000})
};
fetch('https://alpa-sistema-api.onrender.com/api/v1/coupons/validate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://alpa-sistema-api.onrender.com/api/v1/coupons/validate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'code' => 'PROMO10',
'productIds' => [
'prod_abc123'
],
'amountCents' => 5000
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://alpa-sistema-api.onrender.com/api/v1/coupons/validate"
payload := strings.NewReader("{\n \"code\": \"PROMO10\",\n \"productIds\": [\n \"prod_abc123\"\n ],\n \"amountCents\": 5000\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://alpa-sistema-api.onrender.com/api/v1/coupons/validate")
.header("Content-Type", "application/json")
.body("{\n \"code\": \"PROMO10\",\n \"productIds\": [\n \"prod_abc123\"\n ],\n \"amountCents\": 5000\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://alpa-sistema-api.onrender.com/api/v1/coupons/validate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"code\": \"PROMO10\",\n \"productIds\": [\n \"prod_abc123\"\n ],\n \"amountCents\": 5000\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"valid": true,
"code": "PROMO10",
"discountType": "PERCENTAGE",
"discountValue": 10,
"discountAmountCents": 500,
"finalAmountCents": 4500
}
}{
"success": false,
"message": "Cupom expirado ou inativo."
}Cupons
Validar cupom
Valida um cupom de desconto e retorna o valor do desconto calculado. Endpoint público — não requer autenticação.
POST
/
api
/
v1
/
coupons
/
validate
Validar cupom
curl --request POST \
--url https://alpa-sistema-api.onrender.com/api/v1/coupons/validate \
--header 'Content-Type: application/json' \
--data '
{
"code": "PROMO10",
"productIds": [
"prod_abc123"
],
"amountCents": 5000
}
'import requests
url = "https://alpa-sistema-api.onrender.com/api/v1/coupons/validate"
payload = {
"code": "PROMO10",
"productIds": ["prod_abc123"],
"amountCents": 5000
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({code: 'PROMO10', productIds: ['prod_abc123'], amountCents: 5000})
};
fetch('https://alpa-sistema-api.onrender.com/api/v1/coupons/validate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://alpa-sistema-api.onrender.com/api/v1/coupons/validate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'code' => 'PROMO10',
'productIds' => [
'prod_abc123'
],
'amountCents' => 5000
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://alpa-sistema-api.onrender.com/api/v1/coupons/validate"
payload := strings.NewReader("{\n \"code\": \"PROMO10\",\n \"productIds\": [\n \"prod_abc123\"\n ],\n \"amountCents\": 5000\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://alpa-sistema-api.onrender.com/api/v1/coupons/validate")
.header("Content-Type", "application/json")
.body("{\n \"code\": \"PROMO10\",\n \"productIds\": [\n \"prod_abc123\"\n ],\n \"amountCents\": 5000\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://alpa-sistema-api.onrender.com/api/v1/coupons/validate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"code\": \"PROMO10\",\n \"productIds\": [\n \"prod_abc123\"\n ],\n \"amountCents\": 5000\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"valid": true,
"code": "PROMO10",
"discountType": "PERCENTAGE",
"discountValue": 10,
"discountAmountCents": 500,
"finalAmountCents": 4500
}
}{
"success": false,
"message": "Cupom expirado ou inativo."
}Body
application/json
⌘I

