{ "opencollection": "1.0.0", "info": { "name": "Papercups Conversations Customers API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Customers", "type": "folder" }, "items": [ { "info": { "name": "List customers", "type": "http" }, "http": { "method": "GET", "url": "https://app.papercups.io/api/v1/customers", "params": [ { "name": "name", "value": "", "type": "query" }, { "name": "email", "value": "", "type": "query" }, { "name": "host", "value": "", "type": "query" }, { "name": "company_id", "value": "", "type": "query" } ] }, "docs": "Lists customers, filterable by name, email, host, and company_id." }, { "info": { "name": "Create a customer", "type": "http" }, "http": { "method": "POST", "url": "https://app.papercups.io/api/v1/customers", "body": { "type": "json", "data": "{}" } }, "docs": "Create a customer" }, { "info": { "name": "Retrieve a customer", "type": "http" }, "http": { "method": "GET", "url": "https://app.papercups.io/api/v1/customers/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Resource identifier (UUID)." } ] }, "docs": "Retrieve a customer" }, { "info": { "name": "Update a customer", "type": "http" }, "http": { "method": "PUT", "url": "https://app.papercups.io/api/v1/customers/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Resource identifier (UUID)." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a customer" }, { "info": { "name": "Delete a customer", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.papercups.io/api/v1/customers/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Resource identifier (UUID)." } ] }, "docs": "Delete a customer" } ] } ], "bundled": true }