### GET Request Example - Sample Content Source: https://documentation.mitto.ch/apis/sms/sms-bulk-sms-use-cases/retrieve-delivery-reports This is a sample of a GET request URL with actual values for ID and MCCMNC. ```url http://your.callback.url.com?ID=d8d9505a-161b-4776-9efb-4939d5b02e99&MCCMNC=26201 ``` -------------------------------- ### Query Documentation Example Source: https://documentation.mitto.ch/apis/sms/smpp-specification/delivery-report-format Demonstrates how to dynamically query this documentation using an HTTP GET request with the 'ask' query parameter. ```http GET https://documentation.mitto.ch/apis/sms/smpp-specification/delivery-report-format.md?ask= ``` -------------------------------- ### Dynamic Documentation Query Example Source: https://documentation.mitto.ch/apis/sms/about-the-sms-api-reference/callback-query-parameters To get additional information not explicitly on the page, perform an HTTP GET request with the 'ask' query parameter. The question should be specific and in natural language. ```http GET https://documentation.mitto.ch/apis/sms/about-the-sms-api-reference/callback-query-parameters.md?ask= ``` -------------------------------- ### Dynamic Documentation Query Example Source: https://documentation.mitto.ch/apis/chat-apps/api/trafficaccounts To get additional information not explicitly present on the page, perform an HTTP GET request with the 'ask' query parameter. The question should be specific and self-contained. ```http GET https://documentation.mitto.ch/apis/chat-apps/api/trafficaccounts.md?ask= ``` -------------------------------- ### GET Request Example - URL Model Source: https://documentation.mitto.ch/apis/sms/sms-bulk-sms-use-cases/retrieve-delivery-reports This is the URL template for a GET request to retrieve delivery reports. Replace placeholders like '~msgid~' with actual values. ```url http://comp.callback.url.com?ID=\~msgid\~\&MCCMNC=\~mcc\~\~mnc\> ``` -------------------------------- ### Dynamic Documentation Query Source: https://documentation.mitto.ch/apis/chat-apps/authorization Perform an HTTP GET request to the documentation URL with an 'ask' query parameter to get dynamic answers to questions. ```http GET https://documentation.mitto.ch/apis/chat-apps/authorization.md?ask= ``` -------------------------------- ### Usage Report by Country Request Example Source: https://documentation.mitto.ch/apis/sms-and-bulk-sms-apis Example JSON request body to retrieve usage statistics grouped by country. Requires start date, end date, and account name. ```json { "startDate": "2025-04-01", "endDate": "2025-04-30", "accountName": "Starfleet Academy" } ``` -------------------------------- ### Query Documentation via HTTP GET Source: https://documentation.mitto.ch/solutions/editor/home To get information not directly on a page, make an HTTP GET request to the page URL with an 'ask' query parameter containing your question. The response includes the answer and sources. ```http GET https://documentation.mitto.ch/solutions/editor/home.md?ask= ``` -------------------------------- ### Query Documentation Dynamically Source: https://documentation.mitto.ch/integrations/hubspot-integration/hubspot-sms-integration/integration-features/send-messages-to-group-of-customers-with-workflows To get additional information not present on the page, perform an HTTP GET request with the 'ask' query parameter. The question should be specific and self-contained. ```bash GET https://documentation.mitto.ch/integrations/hubspot-integration/hubspot-sms-integration/integration-features/send-messages-to-group-of-customers-with-workflows.md?ask= ``` -------------------------------- ### Query Documentation Dynamically Source: https://documentation.mitto.ch/integrations/oracle-responsys-integration/oracle-responsys-whatsapp-integration To get more information not present on the page, perform an HTTP GET request with the 'ask' query parameter. The question should be specific and in natural language. ```HTTP GET https://documentation.mitto.ch/integrations/oracle-responsys-integration/oracle-responsys-whatsapp-integration.md?ask= ``` -------------------------------- ### Query Documentation Dynamically Source: https://documentation.mitto.ch/apis/sms/about-the-sms-api-reference/delivery-report-error-codes To get information not directly on the page, make an HTTP GET request to the current URL with an 'ask' query parameter containing your question. ```http GET https://documentation.mitto.ch/apis/sms/about-the-sms-api-reference/delivery-report-error-codes.md?ask= ``` -------------------------------- ### Query Documentation Dynamically Source: https://documentation.mitto.ch/apis/chat-apps/api/webhooks To get additional information not explicitly present on a page, perform an HTTP GET request with the 'ask' query parameter. The question should be specific and self-contained. ```http GET https://documentation.mitto.ch/apis/chat-apps/api/webhooks.md?ask= ``` -------------------------------- ### Query Documentation Dynamically Source: https://documentation.mitto.ch/solutions/editor/home/set-up-your-rcs-business-profile To get additional information not directly available on the page, perform an HTTP GET request with the 'ask' query parameter. The question should be specific and in natural language. ```bash GET https://documentation.mitto.ch/solutions/editor/home/set-up-your-rcs-business-profile.md?ask= ``` -------------------------------- ### Query Documentation Dynamically Source: https://documentation.mitto.ch/integrations/hubspot-integration/hubspot-sms-integration/integration-features To get information not explicitly present on a page, perform an HTTP GET request with the 'ask' query parameter. The question should be specific and in natural language. ```HTTP GET https://documentation.mitto.ch/integrations/hubspot-integration/hubspot-sms-integration/integration-features.md?ask= ``` -------------------------------- ### Querying Documentation Dynamically Source: https://documentation.mitto.ch/integrations/shopify-integration To get more information not present on the page, make an HTTP GET request to the current URL with the 'ask' query parameter. The question should be specific and in natural language. ```HTTP GET https://documentation.mitto.ch/integrations/shopify-integration.md?ask= ``` -------------------------------- ### Example API Call with Required Headers Source: https://documentation.mitto.ch/apis/sms/get-started-with-the-mitto-sms-api/required-headers Demonstrates how to construct an API request URL including the 'ask' parameter for dynamic querying of documentation. ```http GET https://documentation.mitto.ch/apis/sms/get-started-with-the-mitto-sms-api/required-headers.md?ask= ``` -------------------------------- ### Get Account Usage Statistics by Country (GET) Source: https://documentation.mitto.ch/apis/sms/api Retrieve account usage statistics by country using a GET request. Requires start date, end date, and account name. ```json { "openapi": "3.1.1", "info": { "title": "Mitto HTTP Customer Service", "version": "4.13.3.0" }, "tags": [ { "name": "v2" } ], "servers": [ { "url": "https://rest.mittoapi.com/" } ], "paths": { "/v2/usage/bycountry": { "get": { "tags": [ "v2" ], "operationId": "GetAccountUsageStatisticsByCountryRequestusagebycountry_Get", "parameters": [ { "schema": { "type": "string", "format": "date-time" }, "name": "startDate", "in": "query", "required": true }, { "schema": { "type": "string", "format": "date-time" }, "name": "endDate", "in": "query", "required": true }, { "schema": { "type": "string" }, "name": "accountName", "in": "query", "required": true }, { "schema": { "type": "string" }, "name": "status", "in": "query", "description": "Optional field, possible values: DELIVERED, UNDELIVERED, ACCEPTED, BUFFERED, SUBMITTED", "required": false } ], "responses": { "200": { "description": "Success", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/GetAccountUsageStatisticsByCountryResponse" } } } } }, "deprecated": false } } }, "components": { "schemas": { "GetAccountUsageStatisticsByCountryResponse": { "title": "GetAccountUsageStatisticsByCountryResponse", "properties": { "error": { "type": "string" }, "usagesByCountry": { "type": "array", "items": { "$ref": "#/components/schemas/AccountUsageByCountry" } } }, "description": "GetAccountUsageStatisticsByCountryResponse", "type": "object" }, "AccountUsageByCountry": { "title": "AccountUsageByCountry", "properties": { "cost": { "type": "number", "format": "double" }, "country": { "type": "string" }, "messageCount": { "type": "integer", "format": "int32" } }, "description": "AccountUsageByCountry", "type": "object" } } } } ``` -------------------------------- ### SMS Query Example Source: https://documentation.mitto.ch/apis/sms/sms-bulk-sms-use-cases/send-a-long-sms Demonstrates how to query documentation dynamically by appending an 'ask' parameter with a question to the API endpoint. ```http GET https://documentation.mitto.ch/apis/sms/sms-bulk-sms-use-cases/send-a-long-sms.md?ask= ``` -------------------------------- ### Query Documentation via HTTP GET Source: https://documentation.mitto.ch/apis/sms/smpp-specification/smpp-specification Use this method to ask questions about the documentation dynamically. The response will include a direct answer and relevant excerpts. ```http GET https://documentation.mitto.ch/apis/sms/smpp-specification/smpp-specification.md?ask= ``` -------------------------------- ### Get Account Usage Statistics by Country (GET) Source: https://documentation.mitto.ch/apis/sms/api Retrieves account usage statistics filtered by country. Requires start date, end date, and account name. An optional status filter can be applied. ```json { "openapi": "3.1.1", "info": { "title": "Mitto HTTP Customer Service", "version": "4.13.3.0" }, "tags": [ { "name": "usage" } ], "servers": [ { "url": "https://rest.mittoapi.com/" } ], "paths": { "/usage/bycountry": { "get": { "tags": [ "usage" ], "operationId": "GetAccountUsageStatisticsByCountryRequestbycountry_Get", "parameters": [ { "schema": { "type": "string", "format": "date-time" }, "name": "startDate", "in": "query", "required": true }, { "schema": { "type": "string", "format": "date-time" }, "name": "endDate", "in": "query", "required": true }, { "schema": { "type": "string" }, "name": "accountName", "in": "query", "required": true }, { "schema": { "type": "string" }, "name": "status", "in": "query", "description": "Optional field, possible values: DELIVERED, UNDELIVERED, ACCEPTED, BUFFERED, SUBMITTED", "required": false } ], "responses": { "200": { "description": "Success", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/GetAccountUsageStatisticsByCountryResponse" } } } } }, "deprecated": false } } }, "components": { "schemas": { "GetAccountUsageStatisticsByCountryResponse": { "title": "GetAccountUsageStatisticsByCountryResponse", "properties": { "error": { "type": "string" }, "usagesByCountry": { "type": "array", "items": { "$ref": "#/components/schemas/AccountUsageByCountry" } } }, "description": "GetAccountUsageStatisticsByCountryResponse", "type": "object" }, "AccountUsageByCountry": { "title": "AccountUsageByCountry", "properties": { "cost": { "type": "number", "format": "double" }, "country": { "type": "string" }, "messageCount": { "type": "integer", "format": "int32" } }, "description": "AccountUsageByCountry", "type": "object" } } } } ``` -------------------------------- ### Query Documentation via HTTP GET Source: https://documentation.mitto.ch/integrations/moengage-integration/moengage-whatsapp-integration Use this method to ask specific questions about the documentation. The response includes direct answers and relevant excerpts. ```bash GET https://documentation.mitto.ch/integrations/moengage-integration/moengage-whatsapp-integration.md?ask= ``` -------------------------------- ### HTTP GET Request for Phone Number Lookup Source: https://documentation.mitto.ch/solutions/lookup/phone-type This is an example of an HTTP GET request to the Mitto Enterprise API for performing a phone number lookup. Ensure you replace 'YourApiKey' with your actual API key and provide the correct MSISDN and optional parameters like metadata and country_iso. ```http https://nis1.mitto.ch/enterprise?key=YourApiKey\&msisdn=0049(0)1725551234\&metadat a=abc123\&country_iso=DE ``` -------------------------------- ### Query Documentation Source: https://documentation.mitto.ch/solutions/editor/campaigns/create-a-campaign Use this GET request to ask questions about the documentation. The question should be specific and in natural language. ```HTTP GET https://documentation.mitto.ch/solutions/editor/campaigns/create-a-campaign.md?ask= ``` -------------------------------- ### GET /usage/bycountry Source: https://documentation.mitto.ch/apis/sms/api Retrieves account usage statistics by country. Requires start date, end date, and account name. An optional status filter can be applied. ```APIDOC ## GET /usage/bycountry ### Description Retrieves account usage statistics by country. This endpoint is useful for analyzing SMS delivery performance and costs across different regions. ### Method GET ### Endpoint /usage/bycountry ### Parameters #### Query Parameters - **startDate** (string) - Required - The start date for the usage statistics (ISO 8601 format). - **endDate** (string) - Required - The end date for the usage statistics (ISO 8601 format). - **accountName** (string) - Required - The name of the account for which to retrieve usage statistics. - **status** (string) - Optional - Filters the usage statistics by message status. Possible values: DELIVERED, UNDELIVERED, ACCEPTED, BUFFERED, SUBMITTED. ### Response #### Success Response (200) - **usagesByCountry** (array) - An array of objects, where each object contains usage details for a specific country. - **country** (string) - The name of the country. - **cost** (number) - The total cost for messages sent to this country. - **messageCount** (integer) - The total number of messages sent to this country. - **error** (string) - An error message if the request failed. ``` -------------------------------- ### Dynamic Documentation Query Source: https://documentation.mitto.ch/solutions/lookup/porting-information Perform an HTTP GET request to the current page URL with the 'ask' query parameter to ask a question. The response will contain a direct answer and relevant excerpts from the documentation. ```http GET https://documentation.mitto.ch/solutions/lookup/porting-information.md?ask= ``` -------------------------------- ### Query Documentation Dynamically Source: https://documentation.mitto.ch/integrations/hubspot-integration/hubspot-chat-apps-integration/integration-features/timeline-record Perform an HTTP GET request to query the documentation dynamically. Include your question as the 'ask' query parameter. ```bash GET https://documentation.mitto.ch/integrations/hubspot-integration/hubspot-chat-apps-integration/integration-features/timeline-record.md?ask= ``` -------------------------------- ### Get Account Usage Statistics by Country (POST) Source: https://documentation.mitto.ch/apis/sms/api Retrieve account usage statistics by country using a POST request. Requires start date, end date, and account name in the request body. ```json { "openapi": "3.1.1", "info": { "title": "Mitto HTTP Customer Service", "version": "4.13.3.0" }, "tags": [ { "name": "v2" } ], "servers": [ { "url": "https://rest.mittoapi.com/" } ], "paths": { "/v2/usage/bycountry": { "post": { "tags": [ "v2" ], "operationId": "GetAccountUsageStatisticsByCountryRequestusagebycountry_Post", "responses": { "200": { "description": "Success", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/GetAccountUsageStatisticsByCountryResponse" } } } } }, "deprecated": false, "requestBody": { "content": { "application/x-www-form-urlencoded": { "schema": { "type": "object", "properties": { "startDate": { "type": "string", "format": "date-time" }, "endDate": { "type": "string", "format": "date-time" }, "accountName": { "type": "string" }, "status": { "type": "string", "description": "Optional field, possible values: DELIVERED, UNDELIVERED, ACCEPTED, BUFFERED, SUBMITTED" } }, "required": [ "startDate", "endDate", "accountName" ] } } } } } } }, "components": { "schemas": { "GetAccountUsageStatisticsByCountryResponse": { "title": "GetAccountUsageStatisticsByCountryResponse", "properties": { "error": { "type": "string" }, "usagesByCountry": { "type": "array", "items": { "$ref": "#/components/schemas/AccountUsageByCountry" } } }, "description": "GetAccountUsageStatisticsByCountryResponse", "type": "object" }, "AccountUsageByCountry": { "title": "AccountUsageByCountry", "properties": { "cost": { "type": "number", "format": "double" }, "country": { "type": "string" }, "messageCount": { "type": "integer", "format": "int32" } }, "description": "AccountUsageByCountry", "type": "object" } } } } ``` -------------------------------- ### Query Documentation Dynamically Source: https://documentation.mitto.ch/integrations/hubspot-integration/hubspot-chat-apps-integration/integration-features Use this HTTP GET request to ask questions about the documentation. The `ask` query parameter should contain a specific, self-contained question in natural language. ```http GET https://documentation.mitto.ch/integrations/hubspot-integration/hubspot-chat-apps-integration/integration-features.md?ask= ``` -------------------------------- ### Get SMS Converted by Code (GET) Source: https://documentation.mitto.ch/apis/sms/api Retrieves SMS conversion status based on receiver, code, and timestamp via GET request. Returns no content on success. ```json {"openapi":"3.1.1","info":{"title":"Mitto HTTP Customer Service","version":"4.13.3.0"},"tags":[{"name":"sms"}],"servers":[{"url":"https://rest.mittoapi.com/"}],"paths":{"/sms/convertedbycode":{"get":{"tags":["sms"],"operationId":"SmsConvertedByCodeRequestconvertedbycode_Get","parameters":[{"schema":{"type":"string"},"name":"receiver","in":"query","description":"The receiver of the message","required":true},{"schema":{"type":"string"},"name":"code","in":"query","description":"The code which was sent in the message text","required":true},{"schema":{"type":"string","format":"date-time"},"name":"timestamp","in":"query","description":"The date and time of the message (ISO 8601)","required":true}],"responses":{"204":{"description":"No Content"}},"deprecated":false}}}} ``` -------------------------------- ### Query Documentation via HTTP GET Source: https://documentation.mitto.ch/apis/postman-collection Use this method to ask questions about the documentation dynamically. Replace '' with your specific query. ```HTTP GET https://documentation.mitto.ch/apis/postman-collection.md?ask= ``` -------------------------------- ### SMS Response Example Source: https://documentation.mitto.ch/apis/sms/sms-bulk-sms-use-cases/send-an-sms This is an example of a successful response when sending an SMS. The 'id' field is a unique identifier for the sent message. ```json { "id": "715118ef01aa4480bbd67324a0459b0b", "timestamp": "2019-04-13T12:07:57.8625574Z", "to": "41751231234", "responseCode": 0, "textLength": 13, "responseText": "SMS sent" } ``` -------------------------------- ### Query Documentation Dynamically Source: https://documentation.mitto.ch/apis/chat-apps/api Use this method to ask questions about the documentation. The response includes direct answers and relevant excerpts. ```HTTP GET https://documentation.mitto.ch/apis/chat-apps/api.md?ask= ``` -------------------------------- ### Example Usage Reports Response Source: https://documentation.mitto.ch/apis/mitto-sms-api-documentation An example response for usage reports, showing message counts and costs aggregated by country. ```json [ { "country": "HRV", "messagesCount": 1500, "cost": 45.00 }, { "country": "DEU", "messagesCount": 2000, "cost": 60.00 } ] ``` -------------------------------- ### Mark SMS as Converted (GET) Source: https://documentation.mitto.ch/apis/sms/api Mark SMS messages as successfully converted using a GET request. Requires a list of message IDs. ```json { "openapi": "3.1.1", "info": { "title": "Mitto HTTP Customer Service", "version": "4.13.3.0" }, "tags": [ { "name": "smsbulk" } ], "servers": [ { "url": "https://rest.mittoapi.com/" } ], "paths": { "/smsbulk/converted": { "get": { "tags": [ "smsbulk" ], "operationId": "SmsConvertedBulkRequestconverted_Get", "parameters": [ { "schema": { "type": "array", "items": { "type": "string" } }, "style": "form", "explode": true, "name": "message_id", "in": "query", "description": "The list of IDs of the messages that should be marked as successfully converted", "required": true }, { "schema": { "type": "string" }, "name": "type", "in": "query", "description": "Http or smpp", "required": false } ], "responses": { "200": { "description": "Success", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Object" } } } } }, "deprecated": false } } }, "components": { "schemas": { "Object": { "properties": {}, "description": "Object", "type": "object" } } } } ``` -------------------------------- ### POST Request Example - Sample Content Source: https://documentation.mitto.ch/apis/sms/sms-bulk-sms-use-cases/retrieve-delivery-reports This is a sample JSON request body for a POST request with actual values for Id, MccMnc, and Price. ```json { "Id": "d8d9505a-161b-4776-9efb-4939d5b02e99", "MccMnc": "26201", "Price": "6.00" } ``` -------------------------------- ### GET /v2/sms/converted API Specification Source: https://documentation.mitto.ch/apis/sms/api Defines the GET request to mark a single SMS message as successfully converted. It requires a 'messageId' parameter. ```json { "openapi": "3.1.1", "info": { "title": "Mitto HTTP Customer Service", "version": "4.13.3.0" }, "tags": [ { "name": "v2" } ], "servers": [ { "url": "https://rest.mittoapi.com/" } ], "paths": { "/v2/sms/converted": { "get": { "tags": [ "v2" ], "operationId": "SmsConvertedRequestsmsconverted_Get", "parameters": [ { "schema": { "type": "string" }, "name": "messageId", "in": "query", "description": "The ID of the message which should be marked as successfully converted", "required": true } ], "responses": { "204": { "description": "No Content" } }, "deprecated": false } } } } ``` -------------------------------- ### Query Documentation Dynamically Source: https://documentation.mitto.ch/integrations/moengage-integration/moengage-sms-integration Use this GET request to query the documentation dynamically with a specific question. The response will include a direct answer and relevant excerpts. ```http GET https://documentation.mitto.ch/integrations/moengage-integration/moengage-sms-integration.md?ask= ``` -------------------------------- ### GET /sms API Specification Source: https://documentation.mitto.ch/apis/sms/api Defines the GET request parameters for sending a single SMS. Use this for simple requests or when building URLs directly. ```json {"openapi":"3.1.1","info":{"title":"Mitto HTTP Customer Service","version":"4.13.3.0"},"tags":[{"name":"sms"}],"servers":[{"url":"https://rest.mittoapi.com/"}],"paths":{"/sms":{"get":{"tags":["sms"],"operationId":"SingleSmsRequest_Get","parameters":[{"schema":{"type":"string"},"name":"to","in":"query","required":true},{"schema":{"type":"string"},"name":"api-key","in":"query","required":false},{"schema":{"type":"string"},"name":"from","in":"query","required":true},{"schema":{"type":"string"},"name":"text","in":"query","required":true},{"schema":{"type":"string","format":"date-time"},"name":"targeted-delivery-time","in":"query","required":false},{"schema":{"type":"string","enum":["GSM","Unicode","Binary","Auto"]},"name":"type","in":"query","required":false},{"schema":{"type":"boolean"},"name":"forceGsm","in":"query","required":false},{"schema":{"type":"string"},"name":"udh","in":"query","required":false},{"schema":{"type":"integer","format":"int32"},"name":"validity","in":"query","required":false},{"schema":{"type":"integer","format":"int32"},"name":"pid","in":"query","required":false},{"schema":{"type":"string"},"name":"reference","in":"query","required":false},{"schema":{"type":"boolean"},"name":"test","in":"query","required":false},{"schema":{"type":"boolean"},"name":"flash","in":"query","required":false},{"schema":{"type":"array","items":{"type":"string"}},"style":"form","explode":true,"name":"deliveryStatusesToNotify","in":"query","required":false},{"schema":{"type":"string"},"name":"callback","in":"query","required":false},{"schema":{"type":"string"},"name":"tenantID","in":"query","required":false}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SingleSmsResponse"}}}}},"deprecated":false}}},"components":{"schemas":{"SingleSmsResponse":{"title":"SingleSmsResponse","properties":{"responseCode":{"type":"integer","format":"int32"},"responseText":{"type":"string"},"test":{"type":"boolean"},"id":{"type":"string"},"messageParts":{"type":"integer","format":"int32"},"textLength":{"type":"integer","format":"int32"},"timestamp":{"type":"string","format":"date-time"},"to":{"type":"string"}},"description":"SingleSmsResponse","type":"object"}}}} ``` -------------------------------- ### Query Documentation Dynamically Source: https://documentation.mitto.ch/solutions/editor/insights Use this method to ask specific questions about the documentation. The response includes a direct answer, relevant excerpts, and sources. ```HTTP GET https://documentation.mitto.ch/solutions/editor/insights.md?ask= ``` -------------------------------- ### HTTP(s) Authentication Example Source: https://documentation.mitto.ch/solutions/lookup/porting-information Demonstrates how to authenticate API requests using an API key in the URL or request header. ```HTTP https://nis1.mitto.ch/enterprise?key=YourApiKey ``` ```HTTP X-Mitto-API-Key: YourApiKey ``` -------------------------------- ### GET /sms/frequency API Specification Source: https://documentation.mitto.ch/apis/sms/api Defines the GET request for SMS frequency control. It requires 'limit' and 'interval' parameters and optionally accepts an 'account'. ```json { "openapi": "3.1.1", "info": { "title": "Mitto HTTP Customer Service", "version": "4.13.3.0" }, "tags": [ { "name": "sms" } ], "servers": [ { "url": "https://rest.mittoapi.com/" } ], "paths": { "/sms/frequency": { "get": { "tags": [ "sms" ], "operationId": "SmsFrequencyRequestfrequency_Get", "parameters": [ { "schema": { "type": "string" }, "name": "account", "in": "query", "description": "Mitto Traffic Account", "required": false }, { "schema": { "type": "integer", "format": "int32" }, "name": "limit", "in": "query", "description": "Message Limit per Number - indicates the maximum number of messages a single phone number can receive.", "required": true }, { "schema": { "type": "integer", "format": "int32" }, "name": "interval", "in": "query", "description": "Time Interval in Minutes - indicates the time range for how long the Message Limit per Number applies for.", "required": true } ], "responses": { "200": { "description": "Success" }, "204": { "description": "No Content" }, "400": { "description": "Frequency control is not enabled or Parameter's validation issues" }, "404": { "description": "No values found for account" }, "429": { "description": "Too many requests" }, "500": { "description": "Internal Server Error" } }, "deprecated": false } } } } ``` -------------------------------- ### Query Documentation via HTTP GET Source: https://documentation.mitto.ch/solutions/lookup/cleansing Use this method to ask specific questions about the documentation. The question should be self-contained and in natural language. The response includes the answer and relevant excerpts. ```http GET https://documentation.mitto.ch/solutions/lookup/cleansing.md?ask= ``` -------------------------------- ### Track SMS Conversions Request Example Source: https://documentation.mitto.ch/apis/sms-and-bulk-sms-apis Example JSON request body for tracking SMS conversions. Requires the message ID of the SMS to track. ```json { "messageId": "069d0e82-a437-47bc-b158-0f4065e83fce" } ``` -------------------------------- ### Query Documentation via HTTP GET Source: https://documentation.mitto.ch/integrations/editor/zoho-chat-apps-integration Use this method to ask specific questions about the documentation. The question should be self-contained and in natural language. The response includes direct answers and relevant excerpts. ```http GET https://documentation.mitto.ch/integrations/editor/zoho-chat-apps-integration.md?ask= ```