Models
Get Started
Collection
Ticket
Get Tickets
GET
/
v1
/
ticketing
/
{collection_id}
/
tickets
curl --request GET \
--url http://localhost:8000/api/v1/ticketing/{collection_id}/tickets
{
"data": [
{
"id": "<string>",
"parent_id": "<string>",
"collection_id": "<string>",
"type": "<string>",
"name": "<string>",
"description": "<string>",
"status": "<string>",
"priority": "<string>",
"ticket_url": "<string>",
"assignees": [
{
"id": "<string>",
"username": "<string>"
}
],
"updated_at": "<string>",
"created_at": "<string>",
"created_by": "<string>",
"due_date": "<string>",
"completed_at": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>"
}
]
}
],
"meta": {
"limit": 123,
"cursors": {
"before": "<string>",
"current": "<string>",
"next": "<string>"
}
}
}
Path Parameters
Query Parameters
Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response.
Include raw response. When you want more data from the source
Response
200 - application/json
curl --request GET \
--url http://localhost:8000/api/v1/ticketing/{collection_id}/tickets
{
"data": [
{
"id": "<string>",
"parent_id": "<string>",
"collection_id": "<string>",
"type": "<string>",
"name": "<string>",
"description": "<string>",
"status": "<string>",
"priority": "<string>",
"ticket_url": "<string>",
"assignees": [
{
"id": "<string>",
"username": "<string>"
}
],
"updated_at": "<string>",
"created_at": "<string>",
"created_by": "<string>",
"due_date": "<string>",
"completed_at": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>"
}
]
}
],
"meta": {
"limit": 123,
"cursors": {
"before": "<string>",
"current": "<string>",
"next": "<string>"
}
}
}