POST
/
api
/
v1
/
products
Criar produto
curl --request POST \
  --url https://api.datacrazy.io/v1/api/api/v1/products \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id_sku": "SKU12345",
  "name": "Nome do Produto",
  "price": 199.99
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json