Ticketing Objects
- Accounts
- Attachments
- Collections
- Comments
- Contacts
- Tags
- Teams
- Tickets
- Users
Tickets
List Tickets
GET
/
ticketing
/
tickets
curl --request GET \
--url https://api.panora.dev/ticketing/tickets \
--header 'x-connection-token: <x-connection-token>'
{
"message": "<string>",
"error": "<string>",
"statusCode": 123,
"data": {
"name": "<string>",
"status": "<string>",
"description": [
"<string>"
],
"due_date": "2023-11-07T05:31:56Z",
"type": "<string>",
"parent_ticket": "<string>",
"tags": [
"<string>"
],
"completed_at": "2023-11-07T05:31:56Z",
"priority": "<string>",
"assigned_to": [
"<string>"
],
"comment": [
"<string>"
],
"account_id": "<string>",
"contact_id": "<string>",
"field_mappings": {},
"id": "<string>",
"remote_id": "<string>",
"remote_data": {}
}
}
Headers
The connection token
Query Parameters
Set to true to include data from the original Ticketing software.
Response
200 - application/json
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.panora.dev/ticketing/tickets \
--header 'x-connection-token: <x-connection-token>'
{
"message": "<string>",
"error": "<string>",
"statusCode": 123,
"data": {
"name": "<string>",
"status": "<string>",
"description": [
"<string>"
],
"due_date": "2023-11-07T05:31:56Z",
"type": "<string>",
"parent_ticket": "<string>",
"tags": [
"<string>"
],
"completed_at": "2023-11-07T05:31:56Z",
"priority": "<string>",
"assigned_to": [
"<string>"
],
"comment": [
"<string>"
],
"account_id": "<string>",
"contact_id": "<string>",
"field_mappings": {},
"id": "<string>",
"remote_id": "<string>",
"remote_data": {}
}
}