{ "opencollection": "1.0.0", "info": { "name": "HubSpot Analytics Events Access Tokens Tickets API", "version": "3.0.0" }, "items": [ { "info": { "name": "Tickets", "type": "folder" }, "items": [ { "info": { "name": "Hubspot List Tickets", "type": "http" }, "http": { "method": "GET", "url": "https://api.hubapi.com/crm/v3/objects/tickets", "params": [ { "name": "limit", "value": "10", "type": "query", "description": "The maximum number of results to return per page." }, { "name": "after", "value": "example-value", "type": "query", "description": "The cursor for pagination to get the next page of results." }, { "name": "properties", "value": "example-value", "type": "query", "description": "A comma-separated list of property names to return." }, { "name": "archived", "value": "false", "type": "query", "description": "Whether to return archived tickets." } ] }, "docs": "Returns a page of ticket records. Use the limit and after parameters to paginate through tickets. You can also specify which properties to return using the properties parameter." }, { "info": { "name": "Hubspot Create a Ticket", "type": "http" }, "http": { "method": "POST", "url": "https://api.hubapi.com/crm/v3/objects/tickets", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new ticket record with the provided properties. The request body should include a properties object containing field values such as subject, content, hs_ticket_priority, and hs_pipeline_stage." }, { "info": { "name": "Hubspot Get a Ticket", "type": "http" }, "http": { "method": "GET", "url": "https://api.hubapi.com/crm/v3/objects/tickets/:ticketId", "params": [ { "name": "ticketId", "value": "500123", "type": "path", "description": "The ID of the ticket to retrieve." }, { "name": "properties", "value": "example-value", "type": "query", "description": "A comma-separated list of property names to return." }, { "name": "archived", "value": "false", "type": "query", "description": "Whether to return archived tickets." } ] }, "docs": "Returns a single ticket record by its ID. You can specify which properties to return using the properties parameter." }, { "info": { "name": "Hubspot Update a Ticket", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.hubapi.com/crm/v3/objects/tickets/:ticketId", "params": [ { "name": "ticketId", "value": "500123", "type": "path", "description": "The ID of the ticket to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Performs a partial update of a ticket record. Only the properties included in the request body will be updated; other properties will remain unchanged." }, { "info": { "name": "Hubspot Archive a Ticket", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.hubapi.com/crm/v3/objects/tickets/:ticketId", "params": [ { "name": "ticketId", "value": "500123", "type": "path", "description": "The ID of the ticket to archive." } ] }, "docs": "Archives (soft deletes) a ticket record by its ID. Archived tickets can be restored using the HubSpot UI or API." }, { "info": { "name": "Hubspot Search Tickets", "type": "http" }, "http": { "method": "POST", "url": "https://api.hubapi.com/crm/v3/objects/tickets/search", "body": { "type": "json", "data": "{}" } }, "docs": "Searches for ticket records using filter groups, sorts, and other query parameters. Supports complex filtering with multiple filter groups and operators for precise record retrieval." } ] } ], "bundled": true }