GET
/
v1
/
tickets
/
draft
curl --request GET \
  --url https://platform.thena.ai/v1/tickets/draft \
  --header 'Authorization: Bearer <token>' \
  --header 'x-org-id: <api-key>'
{
  "uid": "<string>",
  "status": "<string>",
  "draftScope": "<string>",
  "entityType": "<string>",
  "content": {},
  "metadata": {},
  "createdBy": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "lastModifiedBy": "<string>"
}

Authorizations

Authorization
string
header
required

Enter JWT bearer token

x-org-id
string
header
required

Enter organization ID

Query Parameters

page
number
default:1

The page number to fetch tickets by

Required range: x >= 1
Example:

1

limit
number
default:10

The limit number of tickets to fetch

Required range: 1 <= x <= 100
Example:

10

Response

200
application/json
Operation successful
uid
string
required
status
string
required
draftScope
string
required
entityType
string
required
content
object
required
metadata
object
required
createdBy
string
required
createdAt
string
required
updatedAt
string
required
lastModifiedBy
string