POST
/
ticketing
/
tickets
/
batch
curl --request POST \
  --url https://api.panora.dev/ticketing/tickets/batch \
  --header 'Content-Type: application/json' \
  --header 'x-connection-token: <x-connection-token>' \
  --data '[
  {
    "name": "<string>",
    "status": "<string>",
    "description": [
      "<string>"
    ],
    "due_date": "2023-11-07T05:31:56Z",
    "type": "<string>",
    "parent_ticket": "<string>",
    "project_id": "<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": {}
  }
]'
{
  "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>",
    "project_id": "<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

x-connection-token
string
required

The connection token

Query Parameters

remote_data
boolean

Set to true to include data from the original Ticketing software.

Body

application/json · object[]

The body is of type object[].

Response

200
application/json

The response is of type object.