{ "opencollection": "1.0.0", "info": { "name": "Helpcenter Org API", "version": "1.0.0" }, "items": [ { "info": { "name": "Org", "type": "folder" }, "items": [ { "info": { "name": "Get Org Photo", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/org/photo" }, "docs": "Retrieve the organization photo" }, { "info": { "name": "Upload Organization Photo", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/org/photo", "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" } ] } }, "docs": "Upload a photo for the organization" }, { "info": { "name": "Delete Organization Photo", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/org/photo" }, "docs": "Delete the organization photo" }, { "info": { "name": "List currencies", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/org/currencies" }, "docs": "Retrieves all added currencies in the organization." }, { "info": { "name": "Create currencies", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/org/currencies", "body": { "type": "json", "data": "{}" } }, "docs": "Creates one or more new currencies for the organization." }, { "info": { "name": "Update currencies", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/org/currencies", "body": { "type": "json", "data": "{}" } }, "docs": "Updates one or more currencies other than the base currency." }, { "info": { "name": "Get currency by ID", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/org/currencies/:currency", "params": [ { "name": "currency", "value": "", "type": "path", "description": "Path parameter identifying the currency ID." } ] }, "docs": "Retrieves details of a specific currency via its unique currency ID." }, { "info": { "name": "Update currency by ID", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/org/currencies/:currency", "params": [ { "name": "currency", "value": "", "type": "path", "description": "Path parameter identifying the currency ID." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a specific currency by its unique ID." }, { "info": { "name": "Enable multi-currency", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/org/currencies/actions/enable", "body": { "type": "json", "data": "{}" } }, "docs": "Enable multi-currency for the organization and set the base currency." }, { "info": { "name": "Update base currency", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/org/currencies/actions/enable", "body": { "type": "json", "data": "{}" } }, "docs": "Update existing base currency details." }, { "info": { "name": "Get Organization data", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/org" }, "docs": "To get the Company Details" } ] } ], "bundled": true }