{ "opencollection": "1.0.0", "info": { "name": "api-onboarding Account Usage Form API", "version": "v1" }, "items": [ { "info": { "name": "Form", "type": "folder" }, "items": [ { "info": { "name": "Submit Form", "type": "http" }, "http": { "method": "POST", "url": "/onboarding/v1/forms/:form_id/submit", "params": [ { "name": "form_id", "value": "", "type": "path", "description": "Form UUID" } ], "auth": { "type": "apikey", "key": "X-Auth-Token", "value": "{{X-Auth-Token}}", "placement": "header" } }, "docs": "Submits the application form." }, { "info": { "name": "Get Forms", "type": "http" }, "http": { "method": "GET", "url": "/onboarding/v1/forms", "params": [ { "name": "order", "value": "", "type": "query" }, { "name": "order_asc_desc", "value": "", "type": "query" }, { "name": "application_status", "value": "", "type": "query", "description": "Filter by application_status." }, { "name": "entity_type", "value": "", "type": "query", "description": "Type of applicant - individual or corporate." }, { "name": "page", "value": "", "type": "query", "description": "Page number" }, { "name": "per_page", "value": "", "type": "query", "description": "Number of results per page." } ], "auth": { "type": "apikey", "key": "X-Auth-Token", "value": "{{X-Auth-Token}}", "placement": "header" } }, "docs": "Retrieves all application forms for the house account." }, { "info": { "name": "Create Form", "type": "http" }, "http": { "method": "POST", "url": "/onboarding/v1/forms", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "X-Auth-Token", "value": "{{X-Auth-Token}}", "placement": "header" } }, "docs": "Creates a new application form. Returns the new form entity on success." }, { "info": { "name": "Get Form", "type": "http" }, "http": { "method": "GET", "url": "/onboarding/v1/forms/:form_id", "params": [ { "name": "form_id", "value": "", "type": "path", "description": "Form UUID" } ], "auth": { "type": "apikey", "key": "X-Auth-Token", "value": "{{X-Auth-Token}}", "placement": "header" } }, "docs": "Retrieves the application form with the given ID." }, { "info": { "name": "Update Form", "type": "http" }, "http": { "method": "PUT", "url": "/onboarding/v1/forms/:form_id", "params": [ { "name": "form_id", "value": "", "type": "path", "description": "Form UUID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "X-Auth-Token", "value": "{{X-Auth-Token}}", "placement": "header" } }, "docs": "Updates an application form." }, { "info": { "name": "Delete Form", "type": "http" }, "http": { "method": "DELETE", "url": "/onboarding/v1/forms/:form_id", "params": [ { "name": "form_id", "value": "", "type": "path", "description": "Form UUID" } ], "auth": { "type": "apikey", "key": "X-Auth-Token", "value": "{{X-Auth-Token}}", "placement": "header" } }, "docs": "Deletes the application form with the given ID." } ] } ], "bundled": true }