curl --location --request POST '/accounts//products/create/' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 0,
"images": [
"string"
],
"name": "string",
"description": "string",
"price": 0,
"package": "string",
"status": "string",
"partners_sell": true,
"stock": 0,
"validity": {
"selling_window": null,
"redemption_window": null
},
"message": {
"title": "string",
"text": "string"
},
"success": true,
"data": [
{
"id": 0,
"images": [
"string"
],
"name": "string",
"description": "string",
"status": "string",
"partners_sell": true,
"created_at": 0,
"updated_at": 0,
"stock": {
"qtde": 0,
"sold": 0,
"redeemed": 0
},
"validity": {
"selling_window": null,
"redemption_window": null
}
}
]
}'
{
"message": {
"title": "Produto Criado com Sucesso",
"text": "O novo produto foi adicionado ao catálogo do seu estabelecimento.",
"description": "Detalhes completos do produto recém-criado, incluindo seu ID único e status inicial."
},
"success": true,
"status": 201,
"data": {
"id": "PROD-RESTAURANTE-9876",
"user_id": "ESTABE-123456",
"images": [
"https://example.com/images/jantar_restaurante_capa.jpg"
],
"name": "Jantar Especial de Aniversário",
"description": "Um menu degustação exclusivo para celebrar momentos especiais no nosso restaurante.",
"price": 350.00,
"package_type": "Serviço",
"status": "active",
"stock": {
"total_available": 30,
"sold": 0,
"redeemed": 0
},
"validity": {
"selling_window": {
"start_date": "2025-07-01T00:00:00Z",
"end_date": "2025-12-31T23:59:59Z"
},
"redemption_window": {
"start_date": "2025-07-01T00:00:00Z",
"end_date": "2026-01-31T23:59:59Z"
}
},
"category_ids": [
1,
2
],
"created_at": "2025-06-12T10:30:00Z",
"updated_at": "2025-06-12T10:30:00Z"
}
}