Ticketing
- Overview
- Quick Start
- Tickets
- Comments
- Users
- Contacts
- Accounts
- Tags
- Teams
Comments
Create a Comment
Create a comment in any Ticketing Platform using this endpoint
POST
/
ticketing
/
comments
Copy
curl --request POST \
--url https://api.panora.dev/ticketing/comments \
--header 'Content-Type: application/json' \
--header 'x-connection-token: <x-connection-token>' \
--data '{
"body": "<string>",
"html_body": "<string>",
"is_private": true,
"creator_type": "<string>",
"ticket_id": "<string>",
"contact_id": "<string>",
"user_id": "<string>",
"attachments": [
"<string>"
]
}'
Copy
{
"message": "<string>",
"error": "<string>",
"statusCode": 123,
"data": {
"body": "<string>",
"html_body": "<string>",
"is_private": true,
"creator_type": "<string>",
"ticket_id": "<string>",
"contact_id": "<string>",
"user_id": "<string>",
"attachments": [
{
"file_name": "<string>",
"file_url": "<string>",
"uploader": "<string>",
"field_mappings": {},
"id": "<string>",
"remote_id": "<string>",
"remote_data": {}
}
],
"id": "<string>",
"remote_id": "<string>",
"remote_data": {}
}
}
Headers
The connection token
Query Parameters
Set to true to include data from the original Ticketing software.
Body
application/json
Response
200
application/json
The response is of type object
.
Copy
curl --request POST \
--url https://api.panora.dev/ticketing/comments \
--header 'Content-Type: application/json' \
--header 'x-connection-token: <x-connection-token>' \
--data '{
"body": "<string>",
"html_body": "<string>",
"is_private": true,
"creator_type": "<string>",
"ticket_id": "<string>",
"contact_id": "<string>",
"user_id": "<string>",
"attachments": [
"<string>"
]
}'
Copy
{
"message": "<string>",
"error": "<string>",
"statusCode": 123,
"data": {
"body": "<string>",
"html_body": "<string>",
"is_private": true,
"creator_type": "<string>",
"ticket_id": "<string>",
"contact_id": "<string>",
"user_id": "<string>",
"attachments": [
{
"file_name": "<string>",
"file_url": "<string>",
"uploader": "<string>",
"field_mappings": {},
"id": "<string>",
"remote_id": "<string>",
"remote_data": {}
}
],
"id": "<string>",
"remote_id": "<string>",
"remote_data": {}
}
}
Assistant
Responses are generated using AI and may contain mistakes.