{ "opencollection": "1.0.0", "info": { "name": "Booqable API (v4 \"Boomerang\") Availability Customers API", "version": "4" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Customers", "type": "folder" }, "items": [ { "info": { "name": "List customers", "type": "http" }, "http": { "method": "GET", "url": "https://{company}.booqable.com/api/4/customers", "params": [ { "name": "page[number]", "value": "", "type": "query", "description": "The page number to return (JSON:API pagination)." }, { "name": "page[size]", "value": "", "type": "query", "description": "Number of records per page. Defaults to 25." } ] }, "docs": "Lists and searches customers." }, { "info": { "name": "Create a customer", "type": "http" }, "http": { "method": "POST", "url": "https://{company}.booqable.com/api/4/customers", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new customer." }, { "info": { "name": "Fetch a customer", "type": "http" }, "http": { "method": "GET", "url": "https://{company}.booqable.com/api/4/customers/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The UUID of the resource." } ] }, "docs": "Retrieves a single customer by ID." }, { "info": { "name": "Update a customer", "type": "http" }, "http": { "method": "PATCH", "url": "https://{company}.booqable.com/api/4/customers/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The UUID of the resource." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing customer. Set archived to archive it." } ] } ], "bundled": true }