{ "opencollection": "1.0.0", "info": { "name": "Tratta Bulk Operations Customers API", "version": "v1.0.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://{org-uuid}.production.tratta.io/api/v1/customers", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Number of records per page (1-500)" }, { "name": "page", "value": "", "type": "query", "description": "Page number for pagination" }, { "name": "include", "value": "", "type": "query", "description": "Comma-delimited list of related resources to include in response (e.g., customers,payment_methods)" } ] }, "docs": "Returns a paginated list of customers in the organization." }, { "info": { "name": "Create Customer", "type": "http" }, "http": { "method": "POST", "url": "https://{org-uuid}.production.tratta.io/api/v1/customers", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new customer record." }, { "info": { "name": "Get Customer", "type": "http" }, "http": { "method": "GET", "url": "https://{org-uuid}.production.tratta.io/api/v1/customers/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Resource unique identifier" }, { "name": "include", "value": "", "type": "query", "description": "Comma-delimited list of related resources to include in response (e.g., customers,payment_methods)" } ] }, "docs": "Returns a single customer by ID." }, { "info": { "name": "Update Customer", "type": "http" }, "http": { "method": "PUT", "url": "https://{org-uuid}.production.tratta.io/api/v1/customers/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Resource unique identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing customer record." } ] } ], "bundled": true }