Criar produto
curl --request POST \
--url https://api.vendaze.com/v1/products \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Plano Empresarial",
"currency": "BRL",
"price_cts": 99900,
"description": "Plano completo para grandes equipes.",
"code": "PLANO-EMP",
"is_active": true,
"billing_cycle": "monthly",
"image": "https://exemplo.com/produto.png"
}
'import requests
url = "https://api.vendaze.com/v1/products"
payload = {
"name": "Plano Empresarial",
"currency": "BRL",
"price_cts": 99900,
"description": "Plano completo para grandes equipes.",
"code": "PLANO-EMP",
"is_active": True,
"billing_cycle": "monthly",
"image": "https://exemplo.com/produto.png"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Plano Empresarial',
currency: 'BRL',
price_cts: 99900,
description: 'Plano completo para grandes equipes.',
code: 'PLANO-EMP',
is_active: true,
billing_cycle: 'monthly',
image: 'https://exemplo.com/produto.png'
})
};
fetch('https://api.vendaze.com/v1/products', 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://api.vendaze.com/v1/products",
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([
'name' => 'Plano Empresarial',
'currency' => 'BRL',
'price_cts' => 99900,
'description' => 'Plano completo para grandes equipes.',
'code' => 'PLANO-EMP',
'is_active' => true,
'billing_cycle' => 'monthly',
'image' => 'https://exemplo.com/produto.png'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://api.vendaze.com/v1/products"
payload := strings.NewReader("{\n \"name\": \"Plano Empresarial\",\n \"currency\": \"BRL\",\n \"price_cts\": 99900,\n \"description\": \"Plano completo para grandes equipes.\",\n \"code\": \"PLANO-EMP\",\n \"is_active\": true,\n \"billing_cycle\": \"monthly\",\n \"image\": \"https://exemplo.com/produto.png\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://api.vendaze.com/v1/products")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Plano Empresarial\",\n \"currency\": \"BRL\",\n \"price_cts\": 99900,\n \"description\": \"Plano completo para grandes equipes.\",\n \"code\": \"PLANO-EMP\",\n \"is_active\": true,\n \"billing_cycle\": \"monthly\",\n \"image\": \"https://exemplo.com/produto.png\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vendaze.com/v1/products")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Plano Empresarial\",\n \"currency\": \"BRL\",\n \"price_cts\": 99900,\n \"description\": \"Plano completo para grandes equipes.\",\n \"code\": \"PLANO-EMP\",\n \"is_active\": true,\n \"billing_cycle\": \"monthly\",\n \"image\": \"https://exemplo.com/produto.png\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Plano Empresarial",
"price_cts": 99900,
"currency": "BRL",
"description": "Plano completo para grandes equipes.",
"image_url": "https://storage.vendaze.com/client/workspaces/abc/products/xyz/image/avatar_Ab1Cd2Ef3G.webp",
"code": "PLANO-EMP",
"is_active": true,
"billing_cycle": "monthly",
"created_at": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "bad_request",
"message": "Request body must be valid JSON.",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "unauthorized",
"message": "Missing or invalid Authorization header.",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "insufficient_scope",
"message": "This endpoint requires the 'webhooks:read' scope.",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "conflict",
"message": "A record with this value already exists.",
"fields": {
"key": "Value already in use."
},
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "validation_error",
"message": "Validation failed.",
"fields": {
"url": "url must use HTTPS.",
"events": "At least one event is required."
},
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded. Try again in 60 seconds.",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "internal_error",
"message": "An unexpected error occurred.",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}Produtos
Criar produto
Cria um novo produto no workspace.
Escopo necessário
Escopo necessário
products:write
POST
/
v1
/
products
Criar produto
curl --request POST \
--url https://api.vendaze.com/v1/products \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Plano Empresarial",
"currency": "BRL",
"price_cts": 99900,
"description": "Plano completo para grandes equipes.",
"code": "PLANO-EMP",
"is_active": true,
"billing_cycle": "monthly",
"image": "https://exemplo.com/produto.png"
}
'import requests
url = "https://api.vendaze.com/v1/products"
payload = {
"name": "Plano Empresarial",
"currency": "BRL",
"price_cts": 99900,
"description": "Plano completo para grandes equipes.",
"code": "PLANO-EMP",
"is_active": True,
"billing_cycle": "monthly",
"image": "https://exemplo.com/produto.png"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Plano Empresarial',
currency: 'BRL',
price_cts: 99900,
description: 'Plano completo para grandes equipes.',
code: 'PLANO-EMP',
is_active: true,
billing_cycle: 'monthly',
image: 'https://exemplo.com/produto.png'
})
};
fetch('https://api.vendaze.com/v1/products', 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://api.vendaze.com/v1/products",
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([
'name' => 'Plano Empresarial',
'currency' => 'BRL',
'price_cts' => 99900,
'description' => 'Plano completo para grandes equipes.',
'code' => 'PLANO-EMP',
'is_active' => true,
'billing_cycle' => 'monthly',
'image' => 'https://exemplo.com/produto.png'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://api.vendaze.com/v1/products"
payload := strings.NewReader("{\n \"name\": \"Plano Empresarial\",\n \"currency\": \"BRL\",\n \"price_cts\": 99900,\n \"description\": \"Plano completo para grandes equipes.\",\n \"code\": \"PLANO-EMP\",\n \"is_active\": true,\n \"billing_cycle\": \"monthly\",\n \"image\": \"https://exemplo.com/produto.png\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://api.vendaze.com/v1/products")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Plano Empresarial\",\n \"currency\": \"BRL\",\n \"price_cts\": 99900,\n \"description\": \"Plano completo para grandes equipes.\",\n \"code\": \"PLANO-EMP\",\n \"is_active\": true,\n \"billing_cycle\": \"monthly\",\n \"image\": \"https://exemplo.com/produto.png\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vendaze.com/v1/products")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Plano Empresarial\",\n \"currency\": \"BRL\",\n \"price_cts\": 99900,\n \"description\": \"Plano completo para grandes equipes.\",\n \"code\": \"PLANO-EMP\",\n \"is_active\": true,\n \"billing_cycle\": \"monthly\",\n \"image\": \"https://exemplo.com/produto.png\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Plano Empresarial",
"price_cts": 99900,
"currency": "BRL",
"description": "Plano completo para grandes equipes.",
"image_url": "https://storage.vendaze.com/client/workspaces/abc/products/xyz/image/avatar_Ab1Cd2Ef3G.webp",
"code": "PLANO-EMP",
"is_active": true,
"billing_cycle": "monthly",
"created_at": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "bad_request",
"message": "Request body must be valid JSON.",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "unauthorized",
"message": "Missing or invalid Authorization header.",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "insufficient_scope",
"message": "This endpoint requires the 'webhooks:read' scope.",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "conflict",
"message": "A record with this value already exists.",
"fields": {
"key": "Value already in use."
},
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "validation_error",
"message": "Validation failed.",
"fields": {
"url": "url must use HTTPS.",
"events": "At least one event is required."
},
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded. Try again in 60 seconds.",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "internal_error",
"message": "An unexpected error occurred.",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}Autorizações
Access token OAuth 2.1.
Corpo
application/json
Nome do produto.
Required string length:
1 - 80Exemplo:
"Plano Empresarial"
Código ISO 4217 de moeda suportado pela Vendaze.
Opções disponíveis:
AED, ARS, AUD, BRL, CAD, CHF, CLP, CNY, COP, DKK, EGP, EUR, GBP, HKD, ILS, INR, JPY, KWD, MAD, MXN, MYR, NGN, NOK, NZD, PEN, QAR, SAR, SEK, SGD, TRY, USD, UYU, ZAR Exemplo:
"BRL"
Preço em centavos. Padrão: 0.
Intervalo necessário:
0 <= x <= 1000000000000000Exemplo:
99900
Descrição do produto.
Maximum string length:
1000Exemplo:
"Plano completo para grandes equipes."
Código interno ou SKU.
Maximum string length:
60Exemplo:
"PLANO-EMP"
Se o produto está ativo. Padrão: true.
Exemplo:
true
Ciclo de cobrança. Padrão: one_time.
Opções disponíveis:
one_time, monthly, quarterly, annually Exemplo:
"monthly"
Imagem do produto. Aceita URL HTTPS pública, Base64 puro ou data URI completo (data:image/png;base64,...). Máximo 2 MB.
Exemplo:
"https://exemplo.com/produto.png"
Resposta
Produto criado com sucesso.
Show child attributes
Show child attributes
Esta página foi útil?
⌘I