{ "opencollection": "1.0.0", "info": { "name": "Cross River Operating System (COS) Accounts Customer Management API", "version": "1.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://idptest.crbcos.com/connect/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Customer Management", "type": "folder" }, "items": [ { "info": { "name": "Create a customer", "type": "http" }, "http": { "method": "POST", "url": "https://sandbox.crbcos.com/core/v1/cm/customers", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a personal or business customer record used for KYC / onboarding. A customer record is required before opening deposit accounts or issuing cards. MODELED request body." }, { "info": { "name": "Retrieve a customer", "type": "http" }, "http": { "method": "GET", "url": "https://sandbox.crbcos.com/core/v1/cm/customers/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ] }, "docs": "Retrieves a customer record by its ID." }, { "info": { "name": "Deactivate a customer", "type": "http" }, "http": { "method": "DELETE", "url": "https://sandbox.crbcos.com/core/v1/cm/customers/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ] }, "docs": "Deactivates (soft-deletes) a customer record." }, { "info": { "name": "Add a beneficial owner", "type": "http" }, "http": { "method": "POST", "url": "https://sandbox.crbcos.com/core/v1/cm/customers/:customerId/beneficial-owners", "params": [ { "name": "customerId", "value": "", "type": "path", "description": "The unique identifier of the customer." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Adds a beneficial owner to a business customer. MODELED request body." }, { "info": { "name": "Add an identification", "type": "http" }, "http": { "method": "POST", "url": "https://sandbox.crbcos.com/core/v1/cm/customers/:customerId/identifications", "params": [ { "name": "customerId", "value": "", "type": "path", "description": "The unique identifier of the customer." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Adds an identification document (e.g. SSN, passport) to a customer. MODELED request body." } ] } ], "bundled": true }