{ "opencollection": "1.0.0", "info": { "name": "m3ter Account Currency API", "version": "1.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Currency", "type": "folder" }, "items": [ { "info": { "name": "Retrieve Currency", "type": "http" }, "http": { "method": "GET", "url": "https://api.m3ter.com/organizations/:orgId/picklists/currency/:id", "params": [ { "name": "orgId", "value": "", "type": "path", "description": "The unique identifier (UUID) of your Organization. The Organization represents your company as a direct customer of our service." }, { "name": "id", "value": "", "type": "path", "description": "The unique identifier (UUID) of the Currency to retrieve." } ] }, "docs": "Retrieve the specified Currency with the given UUID. Used to obtain the details of a specified existing Currency in your Organization." }, { "info": { "name": "Update Currency", "type": "http" }, "http": { "method": "PUT", "url": "https://api.m3ter.com/organizations/:orgId/picklists/currency/:id", "params": [ { "name": "orgId", "value": "", "type": "path", "description": "The unique identifier (UUID) of your Organization. The Organization represents your company as a direct customer of our service." }, { "name": "id", "value": "", "type": "path", "description": "The unique identifier (UUID) of the Currency to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a Currency with the given UUID.\n\nUsed to update the attributes of the specified Currency for the specified Organization." }, { "info": { "name": "Delete Currency", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.m3ter.com/organizations/:orgId/picklists/currency/:id", "params": [ { "name": "orgId", "value": "", "type": "path", "description": "The unique identifier (UUID) for your Organization. The Organization represents your company as a direct customer of our service." }, { "name": "id", "value": "", "type": "path", "description": "The unique identifier (UUID) of the Currency to delete." } ] }, "docs": "Delete the Currency with the given UUID.\n\nUsed to remove an existing Currency from your Organization that is no longer required." }, { "info": { "name": "List Currencies", "type": "http" }, "http": { "method": "GET", "url": "https://api.m3ter.com/organizations/:orgId/picklists/currency", "params": [ { "name": "orgId", "value": "", "type": "path", "description": "The unique identifier (UUID) for your Organization. The Organization represents your company as a direct customer of our service." }, { "name": "pageSize", "value": "", "type": "query", "description": "Specifies the maximum number of Currencies to retrieve per page." }, { "name": "nextToken", "value": "", "type": "query", "description": "The `nextToken` for multi-page retrievals. It is used to fetch the next page of Currencies in a paginated list." }, { "name": "ids", "value": "", "type": "query", "description": "An optional parameter to filter the list based on specific Currency unique identifiers (UUIDs)." }, { "name": "codes", "value": "", "type": "query", "description": "An optional parameter to retrieve specific Currencies based on their short codes." }, { "name": "archived", "value": "", "type": "query", "description": "Filter by archived flag. A True / False flag indicating whether to return Currencies that are archived *(obsolete)*.\n\n* TRUE - return archived Currencies.\n* FALSE - archived Currencies are not returned." } ] }, "docs": "Retrieve a list of Currencies. \n\nRetrieves a list of Currencies for the specified Organization. This endpoint supports pagination and includes various query parameters to filter the Currencies based on Currency ID, and short codes." }, { "info": { "name": "Create Currency", "type": "http" }, "http": { "method": "POST", "url": "https://api.m3ter.com/organizations/:orgId/picklists/currency", "params": [ { "name": "orgId", "value": "", "type": "path", "description": "The unique identifier (UUID) for your Organization. The Organization represents your company as a direct customer of our service." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new Currency for the specified Organization.\n\nUsed to create a Currency that your Organization will start to use." } ] } ], "bundled": true }