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

collection_id
string
required

Query Parameters

raw
boolean

Include raw response. When you want more data from the source

Body

application/json
name
string
required
description
string
required
assignees
object[]
required
tags
object[]
required
created_by
string
required
type
string
required

Response

201 - application/json
data
object
required