Authorizations
Use your API key (sk_live_xxx or sk_test_xxx)
Path Parameters
Product CzUid
curl --request GET \
--url https://api.contazen.ro/v1/products/{id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": "prod_1a2b3c4d5e",
"object": "product",
"name": "<string>",
"description": "<string>",
"currency": "RON",
"price": 123,
"purchase_price": 123,
"vat_rate": 19,
"unit_of_measure": "buc",
"ubl_um": "H87",
"ubl_nc": "<string>",
"ubl_cpv": "<string>",
"is_service": false,
"is_active": true,
"stock_quantity": 123,
"stock_min": 123,
"stock_max": 123,
"created_at": "2023-11-07T05:31:56Z",
"modified_at": "2023-11-07T05:31:56Z"
},
"meta": {
"version": "v1",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"response_time": "23.45ms"
}
}
Retrieve a specific product by ID
curl --request GET \
--url https://api.contazen.ro/v1/products/{id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": "prod_1a2b3c4d5e",
"object": "product",
"name": "<string>",
"description": "<string>",
"currency": "RON",
"price": 123,
"purchase_price": 123,
"vat_rate": 19,
"unit_of_measure": "buc",
"ubl_um": "H87",
"ubl_nc": "<string>",
"ubl_cpv": "<string>",
"is_service": false,
"is_active": true,
"stock_quantity": 123,
"stock_min": 123,
"stock_max": 123,
"created_at": "2023-11-07T05:31:56Z",
"modified_at": "2023-11-07T05:31:56Z"
},
"meta": {
"version": "v1",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"response_time": "23.45ms"
}
}
Use your API key (sk_live_xxx or sk_test_xxx)
Product CzUid
Was this page helpful?