Skip to main content
POST
/
v1
/
products
Create a product
curl --request POST \
  --url https://api.vendaze.com/v1/products \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Pro Monthly Plan",
  "currency_id": "BRL",
  "price_cts": 19900,
  "description": "<string>",
  "code": "<string>",
  "is_active": true
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "Pro Monthly Plan",
    "price_cts": 19900,
    "currency_id": "BRL",
    "description": "Full access to all features.",
    "code": "PRO-M",
    "is_active": true,
    "billing_cycle": "monthly",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.vendaze.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.1 access token.

Body

application/json
name
string
required
Maximum string length: 80
Example:

"Pro Monthly Plan"

currency_id
string
required
Example:

"BRL"

price_cts
integer
Required range: x >= 0
Example:

19900

description
string
code
string
is_active
boolean
billing_cycle
enum<string>
Available options:
one_time,
monthly,
quarterly,
annually

Response

Product created successfully.

data
object