cURL
curl --request POST \ --url https://api.vambe.me/api/public/ticket/metadata \ --header 'Content-Type: application/json' \ --header 'x-api-key: <x-api-key>' \ --data ' { "metadata": { "order_id": "ORD-12345", "priority": "high" } } '
ticket_id
ai_contact_id
contact_number
x-api-key: your_api_key_here
metadata
{ "contact_number": "+56912345678", "metadata": { "order_id": "ORD-12345", "priority": "high", "refund_reason": "damaged_product" } }
curl --request POST \ 'https://api.vambe.ai/api/public/ticket/metadata' \ --header 'Content-Type: application/json' \ --header 'x-api-key: your_api_key_here' \ --data-raw '{ "ai_contact_id": "df980fc8-b6db-4820-bf22-2969482d106d", "metadata": { "order_id": "ORD-12345", "priority": "high" } }'
{ "status": "ok" }
API key needed to authorize the request
Show child attributes
Ticket metadata updated successfully
Was this page helpful?