{
	"info": {
		"_postman_id": "e41574a9-37ec-4154-9589-cec9b2657858",
		"name": "Smstools API - Public",
		"description": "The integration of our SMS gateway is simple. Integrate our SMS API and easily provide your website or software package with text messaging features in minutes.\n\n### How to Connect to the SMSTools API Using `client_id` and `client_secret`\n\nTo connect to the SMSTools API, you need to authenticate by providing your `client_id` and `client_secret`. These credentials can be sent in either the request headers or the request body.\n\n#### 1\\. **Include Credentials in the Headers**\n\nYou can include the `client_id` and `client_secret` directly in the headers of your request. For example:\n\n- `X-Client-Id: your_client_id_here`\n    \n- `X-Client-Secret: your_client_secret_here`\n    \n\n#### 2\\. **Include Credentials in the Body**\n\nAlternatively, you can pass the `client_id` and `client_secret` as part of the request body. For example:\n\n- `\"client_id\": \"your_client_id_here\",`\n    \n- `\"client_secret\": \"your_client_secret_here\",`\n    \n\n#### 3\\. **Best Practices**\n\n- Always use HTTPS to ensure your credentials are transmitted securely.\n    \n- Avoid hardcoding sensitive information like `client_id` and `client_secret` in your source code. Use environment variables or a secure vault instead.\n    \n- Check the SMSTools API documentation for any additional requirements or options. [https://www.smstools.com/en/sms-gateway-api/](https://www.smstools.com/en/sms-gateway-api/)\n    \n\nOnce your request is authenticated with either method, you can start making API calls to send SMS or perform other actions.\n\n### Handling errors\n\nThe API will return a 4xx http response code on wrong input and sends a human readable error back.\n\n| Error | Explanation |\n| --- | --- |\n| 102 | No message provided |\n| 103 | Phone number is required or invalid |\n| 104 | Invalid Credentials |\n| 105 | We are currently having issues with our servers. Please try again later |\n| 106 | Destination number \\[xxxx\\] missing or invalid |\n| 108 | Not enough credits. |\n| 109 | Sender name cannot be empty |\n| 110 | You used the sender number, this always has to start with a +. |\n| 111 | You are using an invalid sender name. This field can be maximum 11 characters or 14 digits long |\n| 112 | Message Required |\n| 113 | Order Required |\n| 114 | Empty Request |\n| 116 | Access disabled because long time no usage, contact support |\n| 118 | An sms message cannot be longer than 612 characters. Some special characters, like €, count as 2 |\n| 121 | Date \\[xxxx\\] is invalid or in the past. |\n| 122 | No contacts sent |\n| 123 | Object didn't have an ID |\n| 124 | Parameter groupid required |\n| 125 | Group not found |\n| 126 | Name is required |\n| 128 | Group \\[xxxx\\] not found |\n| 129 | Number \\[xxxx\\] already exists in group |\n| 131 | This number is on your opt-out list. This person does not want to receive messages. |\n| 132 | Inbox not found |\n| 133 | Message not found |\n| 134 | Webhook ID not found |\n| 135 | If set, the limit parameter must be a integer bigger than 0 and not bigger than 2000 |\n| 136 | If set, the page parameter must be a integer bigger than 0 |\n| 137 | The 24H Window is not open, please send a template message instead |\n| 138 | Unable to send message due to misconfiguration, please contact support. |\n| 139 | Missing or invalid parameters provided. Please check the errorMsg for more information. |\n| 140 | Invalid or missing WhatsApp Business account. |\n| 200 | Access to the gateway API is not allowed because your IP address is not allowed. |\n| 1002 | Too many failed logins |\n\n### 503 response\n\nAn HTTP `503` response from our servers indicates there is an unexpected spike in API access traffic. The server is usually operational within the next five minutes. If the outage persists or you receive any other form of an HTTP `5XX` error, [contact support](https://www.smstools.com/en/contact).",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "28824228",
		"_collection_link": "https://coupontools123.postman.co/workspace/XIS-Collection~0d1680ea-e986-45c0-acc2-35fc0290df85/collection/28824228-e41574a9-37ec-4154-9589-cec9b2657858?action=share&source=collection_link&creator=28824228"
	},
	"item": [
		{
			"name": "Messages",
			"item": [
				{
					"name": "Send message",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "message",
									"value": "Hello world",
									"description": "Message (required)",
									"type": "text"
								},
								{
									"key": "to",
									"value": "11231231234",
									"description": "Receiver (required)",
									"type": "text"
								},
								{
									"key": "sender",
									"value": "YourName",
									"description": "Sender (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/message/send",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"message",
								"send"
							]
						}
					},
					"response": []
				},
				{
					"name": "Send voice message",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "message",
									"value": "Hello world",
									"description": "Message (required)",
									"type": "text"
								},
								{
									"key": "to",
									"value": "11231231234",
									"description": "Receiver (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/voice/send",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"voice",
								"send"
							]
						}
					},
					"response": []
				}
			],
			"description": "Discover the full documentation for our SMS Gateway API endpoints on our website:\n\n- **Send SMS Message**: Learn how to use the `/send_message` endpoint to seamlessly send SMS messages. Explore parameters, examples, and integration tips.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/send_message)\n    \n- **Send Voice Message**: Access details about the `/send_voice` endpoint to send voice messages effortlessly. Find complete instructions and best practices.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/send_voice)\n    \n\nVisit our website for all the information you need to integrate these features into your application."
		},
		{
			"name": "WhatsApp Business",
			"item": [
				{
					"name": "Send Template",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "template_name",
									"value": "sample_template",
									"description": "Template name (required)",
									"type": "text"
								},
								{
									"key": "to",
									"value": "11231231234",
									"description": "Receiver (required)",
									"type": "text"
								},
								{
									"key": "sender",
									"value": "WhatsAppSender",
									"description": "Sender (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/whatsapp/send_template",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"whatsapp",
								"send_template"
							]
						}
					},
					"response": []
				},
				{
					"name": "Send Text",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "message",
									"value": "Hello World",
									"description": "Message (required)",
									"type": "text"
								},
								{
									"key": "to",
									"value": "11231231234",
									"description": "Receiver (required)",
									"type": "text"
								},
								{
									"key": "sender",
									"value": "WhatsAppSender",
									"description": "Sender (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/whatsapp/send_text",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"whatsapp",
								"send_text"
							]
						}
					},
					"response": []
				},
				{
					"name": "Send File",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "message",
									"value": "Hello World",
									"description": "Message (required)",
									"type": "text"
								},
								{
									"key": "to",
									"value": "11231231234",
									"description": "Receiver (required)",
									"type": "text"
								},
								{
									"key": "sender",
									"value": "WhatsAppSender",
									"description": "Sender (required)",
									"type": "text"
								},
								{
									"key": "attachment",
									"value": "https://www.smstools.com/assets/images/logo.png",
									"description": "Attachment URL (required)",
									"type": "text"
								},
								{
									"key": "attachment_type",
									"value": "image",
									"description": "Attachment type (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/whatsapp/send_file",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"whatsapp",
								"send_file"
							]
						}
					},
					"response": []
				},
				{
					"name": "Send List",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"to\": \"11231231234\", //Receiver (required)\r\n\t\"sender\": \"WhatsAppSender\", //Sender (required)\r\n\t\"message\": \"Hello World\", //Message (required)\r\n    \"list\": [\r\n        {\r\n            \"title\": \"title\",\r\n            \"actions\": [\r\n                {\r\n                    \"id\": \"rateid1\",\r\n                    \"title\": \"⭐️\",\r\n                    \"description\": \"Experience wasn't good enough\"\r\n                },\r\n                {\r\n                    \"id\": \"rateid2\",\r\n                    \"title\": \"⭐⭐️\",\r\n                    \"description\": \"Experience could be better\"\r\n                },\r\n                {\r\n                    \"id\": \"rateid3\",\r\n                    \"title\": \"⭐⭐⭐️\",\r\n                    \"description\": \"Experience was ok\"\r\n                },\r\n                {\r\n                    \"id\": \"rateid4\",\r\n                    \"title\": \"⭐⭐⭐️⭐️\",\r\n                    \"description\": \"Experience was good\"\r\n                },\r\n                {\r\n                    \"id\": \"rateid5\",\r\n                    \"title\": \"⭐⭐⭐️⭐️⭐️\",\r\n                    \"description\": \"Experience was excellent\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseUrl}}/v1/whatsapp/send_list",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"whatsapp",
								"send_list"
							]
						}
					},
					"response": []
				},
				{
					"name": "Send Action",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"to\": \"11231231234\", //Receiver (required)\r\n    \"sender\": \"WhatsAppSender\", //Sender (required)\r\n    \"message\": \"Hello World\", //Message (required)\r\n    \"buttons\": [ //Buttons (required)\r\n        {\r\n            \"id\": \"button_1\",\r\n            \"title\": \"Yes\"\r\n        },\r\n        {\r\n            \"id\": \"button_2\",\r\n            \"title\": \"No\"\r\n        }\r\n    ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseUrl}}/v1/whatsapp/send_action",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"whatsapp",
								"send_action"
							]
						}
					},
					"response": []
				},
				{
					"name": "Send Location",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"to\": \"11231231234\", //Receiver (required)\r\n    \"sender\": \"WhatsAppSender\", //Sender (required)\r\n    \"location\": { //Location (required)\r\n        \"name\": \"Smstools\",\r\n        \"address\": \"Rijksweg 428, 3650 Dilsen-Stokkem\",\r\n        \"latitude\": \"51.0337093\",\r\n        \"longitude\": \"5.7253137\"\r\n    }\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseUrl}}/v1/whatsapp/send_location",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"whatsapp",
								"send_location"
							]
						}
					},
					"response": []
				},
				{
					"name": "is 24H window open",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "to",
									"value": "11231231234",
									"description": "Receiver (required)",
									"type": "text"
								},
								{
									"key": "sender",
									"value": "WhatsAppSender",
									"description": "Sender (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/whatsapp/is_window_open",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"whatsapp",
								"is_window_open"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get account templates",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/whatsapp/templates",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"whatsapp",
								"templates"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get account numbers",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/whatsapp/numbers",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"whatsapp",
								"numbers"
							]
						}
					},
					"response": []
				}
			],
			"description": "Find comprehensive documentation for our WhatsApp API endpoints on our website:\n\n- **Send WhatsApp Template**: Explore how to use the `/whatsapp_send_template` endpoint for sending predefined message templates.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/whatsapp_send_template)\n    \n- **Send WhatsApp Text**: Learn to send text messages using the `/whatsapp_send_text` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/whatsapp_send_text)\n    \n- **Send WhatsApp File**: Get details about sending files with the `/whatsapp_send_file` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/whatsapp_send_file)\n    \n- **Send WhatsApp List**: Find out how to send interactive lists via the `/whatsapp_send_list` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/whatsapp_send_list)\n    \n- **Send WhatsApp Action**: Learn about triggering interactive actions with the `/whatsapp_send_action` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/whatsapp_send_action)\n    \n- **Send WhatsApp Location**: Discover how to share locations using the `/whatsapp_send_location` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/whatsapp_send_location)\n    \n- **Check WhatsApp Window**: Learn to verify if a communication window is open using the `/whatsapp_is_window_open` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/whatsapp_is_window_open)\n    \n- **Manage WhatsApp Templates**: Access the `/whatsapp_templates` endpoint for managing message templates.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/whatsapp_templates)\n    \n- **WhatsApp Account Numbers**: Retrieve details about account numbers with the `/whatsapp_account_numbers` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/whatsapp_account_numbers)\n    \n\nVisit our website for detailed guides, parameters, and examples to integrate these endpoints into your system seamlessly."
		},
		{
			"name": "Groups",
			"item": [
				{
					"name": "Get all groups",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/groups",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"groups"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add group",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "name",
									"value": "Marketing",
									"description": "Name of the group (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/groups",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"groups"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get group",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/groups/{{ID}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"groups",
								"{{ID}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update group",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "PATCH",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "ID",
									"value": "{{ID}}",
									"description": "Group ID (required)",
									"type": "text"
								},
								{
									"key": "name",
									"value": "Marketing",
									"description": "Name of the group (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/groups/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"groups",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Remove group",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "DELETE",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/groups/{{ID}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"groups",
								"{{ID}}"
							]
						}
					},
					"response": []
				}
			],
			"description": "Find detailed documentation for our Group Management API endpoints on our website:\n\n- **Get Groups**: Learn how to retrieve all groups using the `/get_groups` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_groups)\n    \n- **Add Group**: Discover how to create a new group with the `/add_group` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/add_group)\n    \n- **Get Group**: Access detailed information about a specific group using the `/get_group` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_group)\n    \n- **Update Group**: Find out how to modify group details with the `/update_group` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/update_group)\n    \n- **Remove Group**: Learn to delete a group using the `/remove_group` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/remove_group)\n    \n\nVisit our website for complete guides, parameter details, and integration examples for these endpoints."
		},
		{
			"name": "Contacts",
			"item": [
				{
					"name": "Add contact",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "phone",
									"value": "11231231234",
									"description": "Phone number (required)",
									"type": "text"
								},
								{
									"key": "groupid",
									"value": "{{ID}}",
									"description": "Group ID (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/contact",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"contact"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all contacts",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/contact",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"contact"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update contact",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "PATCH",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "ID",
									"value": "{{ID}}",
									"description": "Contact ID (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/contact",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"contact"
							]
						}
					},
					"response": []
				},
				{
					"name": "Remove contact",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "DELETE",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/contact/{{ID}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"contact",
								"{{ID}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Search contact",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/contact/search/{{keyword}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"contact",
								"search",
								"{{keyword}}"
							]
						}
					},
					"response": []
				}
			],
			"description": "Find detailed documentation for our Contact Management API endpoints on our website:\n\n- **Add Contact**: Learn how to add a new contact using the `/add_contact` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/add_contact)\n    \n- **Get All Contacts**: Discover how to retrieve a list of all contacts with the `/get_all_contacts` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_all_contacts)\n    \n- **Update Contact**: Find out how to update existing contact details using the `/update_contact` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/update_contact)\n    \n- **Remove Contact**: Learn to delete a contact with the `/remove_contact` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/remove_contact)\n    \n- **Search Contact**: Access details on searching for specific contacts using the `/search_contact` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/search_contact)\n    \n\nVisit our website for complete guides, parameters, and examples to integrate these endpoints seamlessly."
		},
		{
			"name": "Outbox",
			"item": [
				{
					"name": "Get outbox",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/outbox",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"outbox"
							]
						}
					},
					"response": []
				},
				{
					"name": "Remove from outbox",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "DELETE",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/outbox/{{ID}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"outbox",
								"{{ID}}"
							]
						}
					},
					"response": []
				}
			],
			"description": "Find detailed documentation for our Outbox Management API endpoints on our website:\n\n- **Get Outbox**: Learn how to retrieve messages from the outbox using the `/get_outbox` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_outbox)\n    \n- **Remove from Outbox**: Discover how to delete messages from the outbox with the `/remove_from_outbox` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/remove_from_outbox)\n    \n\nVisit our website for comprehensive guides, parameter details, and integration examples for these endpoints."
		},
		{
			"name": "Account",
			"item": [
				{
					"name": "Get account",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/account",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"account"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get balance",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/balance",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"balance"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get sender ID",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/senderids",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"senderids"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get country codes",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/countrycodes/{{language}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"countrycodes",
								"{{language}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get message templates",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/messagetemplates",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"messagetemplates"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add message template",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "message",
									"value": "Happy Birthday [FIRSTNAME]!",
									"description": "Message (required)",
									"type": "text"
								},
								{
									"key": "order",
									"value": "1",
									"description": "Order (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/messagetemplates/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"messagetemplates",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Get specific message template",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/messagetemplates/{{ID}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"messagetemplates",
								"{{ID}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update message template",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "PATCH",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "ID",
									"value": "{{ID}}",
									"description": "Message template ID (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/messagetemplates/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"messagetemplates",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Remove message template",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "DELETE",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/messagetemplates/{{ID}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"messagetemplates",
								"{{ID}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get history",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/message/logging",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"message",
								"logging"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get inbox",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/message/inbox",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"message",
								"inbox"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get specific inbox",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/message/inbox/{{inbox_nr}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"message",
								"inbox",
								"{{inbox_nr}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get webhook",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/webhook/{{D}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"webhook",
								"{{D}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get statistics",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/statistics",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"statistics"
							]
						}
					},
					"response": []
				}
			],
			"description": "Find detailed documentation for our Account and Messaging API endpoints on our website:\n\n### Account Management\n\n- **Get Account**: Retrieve account details with the `/get_account` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_account)\n    \n- **Get Balance**: Check your account balance using the `/get_balance` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_balance)\n    \n- **Get Sender IDs**: Access your registered sender IDs through the `/get_senderids` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_senderids)\n    \n- **Get Country Codes**: Retrieve a list of supported country codes with the `/get_countrycodes` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_countrycodes)\n    \n\n### Message Templates\n\n- **Get Message Templates**: Retrieve all message templates using the `/get_message_templates` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_message_templates)\n    \n- **Add Message Template**: Create a new template via the `/add_message_template` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/add_message_template)\n    \n- **Get Message Template**: Access details of a specific template with the `/get_message_template` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_message_template)\n    \n- **Update Message Template**: Modify an existing template using the `/update_message_template` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/update_message_template)\n    \n- **Delete Message Template**: Remove a template through the `/delete_message_template` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/delete_message_template)\n    \n\n### Messaging and History\n\n- **Get History**: Access the message history with the `/get_history` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_history)\n    \n- **Get Inbox (All)**: Retrieve all inbox messages via the `/get_inbox_all` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_inbox_all)\n    \n- **Get Inbox**: Access specific inbox messages using the `/get_inbox` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_inbox)\n    \n\n### Webhooks and Statistics\n\n- **Get Webhook**: Check configured webhooks with the `/get_webhook` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_webhook)\n    \n- **Get Statistics**: Retrieve account usage and performance statistics via the `/get_statistics` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_statistics)\n    \n\nVisit our website for comprehensive guides, parameter details, and integration examples for these endpoints."
		},
		{
			"name": "Team (subaccounts)",
			"item": [
				{
					"name": "List subaccounts | teammates",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/subaccount",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"subaccount"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get subaccount | teammate",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/subaccount/{{subaccount_id}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"subaccount",
								"{{subaccount_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create subaccount | teammate",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "subusername",
									"value": "JaneDoe",
									"description": "Subaccount username (required)",
									"type": "text"
								},
								{
									"key": "password",
									"value": "ExamplePassword123",
									"description": "Password (required)",
									"type": "text"
								},
								{
									"key": "email",
									"value": "jane@doe.com",
									"description": "Email (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/subaccount",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"subaccount"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update subaccount | teammate",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "PATCH",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "memo",
									"value": "foo",
									"description": "Memo (optional)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/subaccount/{{subaccount_id}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"subaccount",
								"{{subaccount_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get History subaccount | teammate",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/message/logging/subaccount/{{subaccount_id}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"message",
								"logging",
								"subaccount",
								"{{subaccount_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get statistics subaccount | teammate",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/statistics/subaccount/{{subaccount_id}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"statistics",
								"subaccount",
								"{{subaccount_id}}"
							]
						}
					},
					"response": []
				}
			],
			"description": "Find detailed documentation for our Sub-Account Management API endpoints on our website:\n\n- **List Sub-Accounts**: Retrieve a list of all sub-accounts using the `/list_sub` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/list_sub)\n    \n- **Get Sub-Account**: Access details of a specific sub-account with the `/get_sub` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_sub)\n    \n- **Create Sub-Account**: Learn how to create a new sub-account using the `/create_sub` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/create_sub)\n    \n- **Update Sub-Account**: Modify an existing sub-account through the `/update_sub` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/update_sub)\n    \n- **Sub-Account History**: Retrieve the message history for a sub-account using the `/sub_history` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/sub_history)\n    \n- **Sub-Account Statistics**: Access performance and usage statistics for sub-accounts via the `/sub_statistics` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/sub_statistics)\n    \n\nVisit our website for comprehensive guides, parameter details, and integration examples for these endpoints."
		},
		{
			"name": "Opt-out",
			"item": [
				{
					"name": "List Opt-out",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/optouts/list",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"optouts",
								"list"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add Opt-out",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "number",
									"value": "11231231234",
									"description": "Contact number (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/optouts",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"optouts"
							]
						}
					},
					"response": []
				},
				{
					"name": "Remove Opt-out",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "DELETE",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/optouts/{{number}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"optouts",
								"{{number}}"
							]
						}
					},
					"response": []
				}
			],
			"description": "Find detailed documentation for our Opt-Out Management API endpoints on our website:\n\n- **List Opt-Outs**: Retrieve a list of all opted-out contacts using the `/list_optout` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/list_optout)\n    \n- **Add Opt-Out**: Learn how to manually add a contact to the opt-out list via the `/add_optout` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/add_optout)\n    \n- **Remove Opt-Out**: Discover how to remove a contact from the opt-out list using the `/remove_optout` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/remove_optout)\n    \n\nVisit our website for complete guides, parameters, and integration examples for these endpoints."
		},
		{
			"name": "Other",
			"item": [
				{
					"name": "Format number",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "number",
									"value": "0490.123 /4.56",
									"description": "Incorrect number (required)",
									"type": "text"
								},
								{
									"key": "countrycode",
									"value": "BE",
									"description": "Country code of the number (required)",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseUrl}}/v1/format/number",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"format",
								"number"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get virtual mobile numbers",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "X-Client-Id",
								"value": "{{client_id}}",
								"type": "text"
							},
							{
								"key": "X-Client-Secret",
								"value": "{{client_secret}}",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/v1/vmn",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"v1",
								"vmn"
							]
						}
					},
					"response": []
				}
			],
			"description": "Find detailed documentation for the Number Formatting and VMN API endpoints on our website:\n\n- **Format Number**: Learn how to format phone numbers using the `/format_number` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/format_number)\n    \n- **Get VMN**: Discover how to retrieve Virtual Mobile Numbers (VMN) with the `/get_vmn` endpoint.  \n    [View Documentation](https://www.smstools.com/en/sms-gateway-api/get_vmn)\n    \n\nVisit our website for complete guides, parameters, and integration examples for these endpoints."
		}
	],
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	],
	"variable": [
		{
			"key": "baseUrl",
			"value": "https://api.smsgatewayapi.com"
		},
		{
			"key": "client_id",
			"value": "Client_Id",
			"type": "string"
		},
		{
			"key": "client_secret",
			"value": "Client_secret",
			"type": "string"
		}
	]
}