API Reference
- auth
- connections
- webhook
- linked-users
- organisations
- projects
- field-mapping
- events
- magic-link
- passthrough
- crm/contact
- crm/deal
- crm/note
- crm/company
- crm/engagement
- crm/stage
- crm/task
- crm/user
- ticketing/ticket
- ticketing/comment
- ticketing/user
- ticketing/attachment
- ticketing/contact
- ticketing/account
- ticketing/tag
- ticketing/team
ticketing/comment
List a batch of Comments
GET
/
ticketing
/
comments
curl --request GET \
--url https://api.panora.dev/ticketing/comments \
--header 'x-connection-token: <x-connection-token>'
{
"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.
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url https://api.panora.dev/ticketing/comments \
--header 'x-connection-token: <x-connection-token>'
{
"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.