{ "opencollection": "1.0.0", "info": { "name": "Pipeline Backend Admin Customers API", "version": "0.1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Customers", "type": "folder" }, "items": [ { "info": { "name": "GET /v1/customers", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/customers" } }, { "info": { "name": "POST /v1/customers", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v1/customers", "body": { "type": "json", "data": "{}" } } }, { "info": { "name": "GET /v1/customers/{customerId}", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/customers/:customerId", "params": [ { "name": "customerId", "value": "", "type": "path" } ] } }, { "info": { "name": "PATCH /v1/customers/{customerId}", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/v1/customers/:customerId", "params": [ { "name": "customerId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } } }, { "info": { "name": "DELETE /v1/customers/{customerId}", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v1/customers/:customerId", "params": [ { "name": "customerId", "value": "", "type": "path" } ] } } ] } ], "bundled": true }