{ "opencollection": "1.0.0", "info": { "name": "m3ter Account StatementDefinition API", "version": "1.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "StatementDefinition", "type": "folder" }, "items": [ { "info": { "name": "Retrieve StatementDefinition", "type": "http" }, "http": { "method": "GET", "url": "https://api.m3ter.com/organizations/:orgId/statementdefinitions/: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 StatementDefinition to retrieve." } ] }, "docs": "Retrieve a StatementDefinition with the given UUID.\n\nRetrieves the details of a specific StatementDefinition for the specified Organization, using its unique identifier (UUID). This endpoint is useful when you want to retrieve the complete details of a single StatementDefinition." }, { "info": { "name": "Update StatementDefinition", "type": "http" }, "http": { "method": "PUT", "url": "https://api.m3ter.com/organizations/:orgId/statementdefinitions/: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" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update StatementDefinition for the given UUID.\n\nUpdate the details of a specific StatementDefinition for the specified Organization, using its unique identifier (UUID). The updated details for the StatementDefinition should be sent in the request body. " }, { "info": { "name": "Delete StatementDefinition", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.m3ter.com/organizations/:orgId/statementdefinitions/: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 StatementDefinition to delete." } ] }, "docs": "Delete a StatementDefinition with the given UUID.\n\nThis endpoint deletes a specific StatementDefinition within a specified Organization, using the StatementDefinition UUID." }, { "info": { "name": "List StatementDefinitions", "type": "http" }, "http": { "method": "GET", "url": "https://api.m3ter.com/organizations/:orgId/statementdefinitions", "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": "pageSize", "value": "", "type": "query", "description": "Specifies the maximum number of StatementDefinitions 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 StatementDefinitions in a paginated list." } ] }, "docs": "Retrieve a list of StatementDefinitions.\n\nThis endpoint retrieves a list of all the StatementDefinitions within a specified Organization. The list can be paginated for easier management." }, { "info": { "name": "Create StatementDefinition", "type": "http" }, "http": { "method": "POST", "url": "https://api.m3ter.com/organizations/:orgId/statementdefinitions", "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." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new StatementDefinition.\n\nThis endpoint creates a new StatementDefinition within the specified Organization. The details of the StatementDefinition are provided in the request body." } ] } ], "bundled": true }