{ "opencollection": "1.0.0", "info": { "name": "TaxJar Sales Tax Categories Customers API", "version": "2.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://api.taxjar.com/v2/customers" }, "docs": "Returns a list of customer IDs for exempt customers associated with the authenticated account." }, { "info": { "name": "Create a customer", "type": "http" }, "http": { "method": "POST", "url": "https://api.taxjar.com/v2/customers", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new exempt customer record for sales tax exemption management." }, { "info": { "name": "Show a customer", "type": "http" }, "http": { "method": "GET", "url": "https://api.taxjar.com/v2/customers/:customer_id", "params": [ { "name": "customer_id", "value": "", "type": "path", "description": "Unique identifier for the customer" } ] }, "docs": "Returns a single exempt customer by customer ID." }, { "info": { "name": "Update a customer", "type": "http" }, "http": { "method": "PUT", "url": "https://api.taxjar.com/v2/customers/:customer_id", "params": [ { "name": "customer_id", "value": "", "type": "path", "description": "Unique identifier for the customer" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing exempt customer record." }, { "info": { "name": "Delete a customer", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.taxjar.com/v2/customers/:customer_id", "params": [ { "name": "customer_id", "value": "", "type": "path", "description": "Unique identifier for the customer" } ] }, "docs": "Deletes an existing exempt customer record." } ] } ], "bundled": true }