{ "opencollection": "1.0.0", "info": { "name": "Tratta Bulk Operations Payment Plans API", "version": "v1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Payment Plans", "type": "folder" }, "items": [ { "info": { "name": "List Payment Plans", "type": "http" }, "http": { "method": "GET", "url": "https://{org-uuid}.production.tratta.io/api/v1/payment_plans", "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 payment plans." }, { "info": { "name": "Create Payment Plan", "type": "http" }, "http": { "method": "POST", "url": "https://{org-uuid}.production.tratta.io/api/v1/payment_plans", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new payment plan for a debt account." }, { "info": { "name": "Get Payment Plan", "type": "http" }, "http": { "method": "GET", "url": "https://{org-uuid}.production.tratta.io/api/v1/payment_plans/: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 payment plan by ID." }, { "info": { "name": "Update Payment Plan", "type": "http" }, "http": { "method": "PUT", "url": "https://{org-uuid}.production.tratta.io/api/v1/payment_plans/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Resource unique identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing payment plan." } ] } ], "bundled": true }