{ "opencollection": "1.0.0", "info": { "name": "Tap Payments Authorize Customers API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Customers", "type": "folder" }, "items": [ { "info": { "name": "List all customers", "type": "http" }, "http": { "method": "GET", "url": "https://api.tap.company/v2/customers" }, "docs": "Lists customers in the account." }, { "info": { "name": "Create a customer", "type": "http" }, "http": { "method": "POST", "url": "https://api.tap.company/v2/customers", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a customer record used to save cards and reconcile future charges." }, { "info": { "name": "Retrieve a customer", "type": "http" }, "http": { "method": "GET", "url": "https://api.tap.company/v2/customers/:customer_id", "params": [ { "name": "customer_id", "value": "", "type": "path", "description": "The id of the customer (e.g. cus_XXXXXXXX)." } ] }, "docs": "Retrieves a customer by id." }, { "info": { "name": "Update a customer", "type": "http" }, "http": { "method": "PUT", "url": "https://api.tap.company/v2/customers/:customer_id", "params": [ { "name": "customer_id", "value": "", "type": "path", "description": "The id of the customer (e.g. cus_XXXXXXXX)." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing customer." }, { "info": { "name": "Delete a customer", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.tap.company/v2/customers/:customer_id", "params": [ { "name": "customer_id", "value": "", "type": "path", "description": "The id of the customer (e.g. cus_XXXXXXXX)." } ] }, "docs": "Deletes a customer record." } ] } ], "bundled": true }