Saltar para o conteúdo principal
PATCH
/
v1
/
products
/
{id}
Atualizar produto
curl --request PATCH \
  --url https://api.vendaze.com/v1/products/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "currency_id": "<string>",
  "price_cts": 1,
  "description": "<string>",
  "code": "<string>",
  "is_active": true
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "Pro Plan Monthly",
    "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.

Autorizações

Authorization
string
header
obrigatório

OAuth 2.1 access token.

Parâmetros de caminho

id
string<uuid>
obrigatório

UUID of the resource.

Corpo

application/json
name
string
Maximum string length: 80
currency_id
string
price_cts
integer
Intervalo necessário: x >= 0
description
string | null
code
string | null
is_active
boolean
billing_cycle
enum<string>
Opções disponíveis:
one_time,
monthly,
quarterly,
annually

Resposta

Produto atualizado com sucesso.

data
object