curl --request POST \
--url https://api.sandbox.sardine.ai/v1/supportTickets \
--header 'Content-Type: application/json' \
--data '{
"email": "user@example.com",
"userId": "abc123",
"issueType": "payment_problem",
"message": "I was charged twice for the same transaction."
}'
This endpoint allows users to file a support ticket with Sardine by providing their contact information and details about the issue.
POST
/
supportTickets
Create Support Ticket
Copy
Ask AI
curl --request POST \
--url https://api.sandbox.sardine.ai/v1/supportTickets \
--header 'Content-Type: application/json' \
--data '{
"email": "user@example.com",
"userId": "abc123",
"issueType": "payment_problem",
"message": "I was charged twice for the same transaction."
}'