Models
Get Started
Collection
Ticket
Create Ticket
POST
/
v1
/
ticketing
/
{collection_id}
/
tickets
curl --request POST \
--url http://localhost:8000/api/v1/ticketing/{collection_id}/tickets \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"assignees": [
{
"id": "<string>",
"username": "<string>"
}
],
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"created_by": "<string>",
"type": "<string>"
}'
{
"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>"
}
]
}
}
Path Parameters
Query Parameters
Include raw response. When you want more data from the source
Body
application/json
Response
201 - application/json
curl --request POST \
--url http://localhost:8000/api/v1/ticketing/{collection_id}/tickets \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"assignees": [
{
"id": "<string>",
"username": "<string>"
}
],
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"created_by": "<string>",
"type": "<string>"
}'
{
"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>"
}
]
}
}