{ "opencollection": "1.0.0", "info": { "name": "KOMOJU Barcodes Customers API", "version": "1.0" }, "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://komoju.com/api/v1/customers", "params": [ { "name": "page", "value": "", "type": "query" }, { "name": "per_page", "value": "", "type": "query" } ] }, "docs": "Retrieves a paginated list of previously-registered customers." }, { "info": { "name": "Create a customer", "type": "http" }, "http": { "method": "POST", "url": "https://komoju.com/api/v1/customers", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a customer with the specified `payment_details`, stored in a PCI-DSS-compliant way. The customer `id` can then be supplied instead of `payment_details` when creating a payment." }, { "info": { "name": "Show a customer", "type": "http" }, "http": { "method": "GET", "url": "https://komoju.com/api/v1/customers/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Retrieves customer personal information." }, { "info": { "name": "Update a customer", "type": "http" }, "http": { "method": "PATCH", "url": "https://komoju.com/api/v1/customers/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the customer with the given `id`. A new set of `payment_details` may be specified." }, { "info": { "name": "Delete a customer", "type": "http" }, "http": { "method": "DELETE", "url": "https://komoju.com/api/v1/customers/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Deletes the customer with the given `id`, erasing the stored payment details." } ] } ], "bundled": true }