{ "opencollection": "1.0.0", "info": { "name": "Gorgias REST Account Tickets API", "version": "2024-01-01" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Tickets", "type": "folder" }, "items": [ { "info": { "name": "List tickets", "type": "http" }, "http": { "method": "GET", "url": "https://{account}.gorgias.com/api/tickets", "params": [ { "name": "cursor", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "customer_id", "value": "", "type": "query" }, { "name": "assignee_user_id", "value": "", "type": "query" }, { "name": "status", "value": "", "type": "query" } ] }, "docs": "List tickets" }, { "info": { "name": "Create ticket", "type": "http" }, "http": { "method": "POST", "url": "https://{account}.gorgias.com/api/tickets", "body": { "type": "json", "data": "{}" } }, "docs": "Create ticket" }, { "info": { "name": "Retrieve a ticket", "type": "http" }, "http": { "method": "GET", "url": "https://{account}.gorgias.com/api/tickets/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Retrieve a ticket" }, { "info": { "name": "Update a ticket", "type": "http" }, "http": { "method": "PUT", "url": "https://{account}.gorgias.com/api/tickets/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a ticket" }, { "info": { "name": "Delete a ticket", "type": "http" }, "http": { "method": "DELETE", "url": "https://{account}.gorgias.com/api/tickets/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a ticket" } ] } ], "bundled": true }