{ "opencollection": "1.0.0", "info": { "name": "Ticket Tailor Check-ins Orders API", "version": "1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Orders", "type": "folder" }, "items": [ { "info": { "name": "List all orders", "type": "http" }, "http": { "method": "GET", "url": "https://api.tickettailor.com/v1/orders", "params": [ { "name": "starting_after", "value": "", "type": "query", "description": "Cursor - return results that come after this object ID." }, { "name": "ending_before", "value": "", "type": "query", "description": "Cursor - return results that come before this object ID." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results per page (max 100)." } ] }, "docs": "Returns a paginated list of orders belonging to the box office." }, { "info": { "name": "Retrieve an order", "type": "http" }, "http": { "method": "GET", "url": "https://api.tickettailor.com/v1/orders/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the object." } ] }, "docs": "Retrieves a single order by its ID." }, { "info": { "name": "Update an order", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.tickettailor.com/v1/orders/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the object." } ] }, "docs": "Updates an existing order." } ] } ], "bundled": true }