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