Ticketing
- Overview
- Quick Start
- Tickets
- Comments
- Users
- Contacts
- Accounts
- Tags
- Teams
Tickets
Update a Ticket
Update a Ticket from any Ticketing Platform using this endpoint
PATCH
/
ticketing
/
tickets
Copy
curl --request PATCH \
--url https://api.panora.dev/ticketing/tickets
Copy
{
"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": {}
}
Query Parameters
Response
200 - application/json
The response is of type object
.
Copy
curl --request PATCH \
--url https://api.panora.dev/ticketing/tickets
Copy
{
"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": {}
}
Assistant
Responses are generated using AI and may contain mistakes.