Last updated 2 years ago
Was this helpful?
curl -L \ --url '/supports/tickets' \ --header 'Authorization: Bearer JWT'
{ "statusCode": 200, "data": { "tickets": [ { "requestId": 1, "subject": "Suggestion", "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry", "status": "Open", "createdAt": "2022-08-20T22:55:29Z" } ] } }
curl -L \ --url '/supports/subject-options' \ --header 'Authorization: Bearer JWT'
{ "statusCode": 200, "data": { "subjectOptions": [ "Support", "Suggestions" ] } }
John Smith
john.smith@example.com
Suggestion
Lorem Ipsum is simply dummy text of the printing and typesetting industry
curl -L \ --request POST \ --url '/supports/create-ticket' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "name": "John Smith", "email": "john.smith@example.com", "subject": "Suggestion", "body": "Lorem Ipsum is simply dummy text of the printing and typesetting industry" }'
{ "statusCode": 201 }