{ "opencollection": "1.0.0", "info": { "name": "Reputation Asset Library Tickets API", "version": "v3" }, "request": { "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "items": [ { "info": { "name": "Tickets", "type": "folder" }, "items": [ { "info": { "name": "Get Tickets", "type": "http" }, "http": { "method": "GET", "url": "https://api.reputation.com/v3/tickets", "params": [ { "name": "offset", "value": "", "type": "query", "description": "Offset for pagination" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of objects to return" } ], "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "docs": "Retrieves a list of tickets from the Reputation platform. You can specify various filters and sorting options to obtain a refined list of tickets based on requirements such as Queue IDs, Stage IDs, and location IDs. Additionally, you can specify date ranges for ticket creation and update dates to narrow down the results.\nNote: This API refers to tickets that have been created from customer feedback andallows your teams to track the resolution timeline for taking action on the feedback.\nSample\nJa" }, { "info": { "name": "Save Ticket", "type": "http" }, "http": { "method": "POST", "url": "https://api.reputation.com/v3/tickets", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "docs": "You can use this endpoint to create a new ticket in the system. By submitting relevant details such as the issue, location, and contact information, you can efficiently log and track customer issues, feedback, or inquiries. This tool is essential for managing customer interactions and ensuring timely responses to their needs.\nUpdating Existing Tickets\nThis endpoint also allows for the updating of existing tickets, provided they are not in a Closed stage. When making your request:\n\nAlways include" }, { "info": { "name": "Get Queues", "type": "http" }, "http": { "method": "GET", "url": "https://api.reputation.com/v3/ticket-queues", "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "docs": "You can use this endpoint to retrieve a comprehensive list of all ticket queues within the system. This functionality allows you to view and understand the different categories or departments where tickets are organized and managed. Each queue is uniquely identified by an ID and has a specific name that describes its purpose or area of focus.\nSample\nJavaScript XHR Request\nvar xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/ticket-queues\", true);\nxhr.setRequestHeader(\"x" }, { "info": { "name": "Get Stages", "type": "http" }, "http": { "method": "GET", "url": "https://api.reputation.com/v3/ticket-stages", "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "docs": "You can use this endpoint to retrieve all ticket stages. This endpoint provides you with comprehensive information about each stage, including their IDs, names, and specific properties such as whether they are system-defined or custom, their order in the process flow, and whether they are marked as 'on hold'. This information helps you understand and manage the different stages that a ticket might go through in your workflow.\nSample\nJavaScript XHR Request\nvar xhr = new XMLHttpRequest();\nxhr.open" }, { "info": { "name": "Get Ticket Definitions", "type": "http" }, "http": { "method": "GET", "url": "https://api.reputation.com/v3/ticket-types", "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "docs": "You can use this endpoint to retrieve all available ticket types in your system. Each ticket type contains unique identifiers, labels, and associated field groups that define the structure and information required for each ticket type. The field groups within a ticket type include their own identifiers, labels, and specific metadata fields.\nSample\nJavaScript XHR Request\nvar xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/ticket-types\", true);\nxhr.setRequestHeader(\"x-ap" } ] } ], "bundled": true }