POST
/
ticketing
/
attachments
curl --request POST \
  --url https://api.panora.dev/ticketing/attachments \
  --header 'Content-Type: application/json' \
  --header 'x-connection-token: <x-connection-token>' \
  --data '{
  "file_name": "<string>",
  "file_url": "<string>",
  "uploader": "<string>",
  "field_mappings": {}
}'
{
  "message": "<string>",
  "error": "<string>",
  "statusCode": 123,
  "data": {
    "file_name": "<string>",
    "file_url": "<string>",
    "uploader": "<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

Response

200
application/json

The response is of type object.