{"activeVersionTag":"latest","latestAvailableVersionTag":"latest","collection":{"info":{"_postman_id":"2848a33b-e961-487f-9462-9be81d2fc9d6","name":"SMS Extension - Incoming SMS Webhook Document","description":"## Overview\n\nOur system can forward **incoming SMS messages** to your webhook endpoint in real time.\n\nYou can configure the HTTP method, URL, query parameters, and request body format based on what your system supports.\n\n---\n\n## Available Variables\n\nYou can use the following variables in **Query Parameters** or **Body Parameters**:\n\n| Variable | Description |\n| --- | --- |\n| `${source}` | SMS sender (mobile number) |\n| `${destination}` | SMS receiver (virtual/long code) |\n| `${text}` | SMS message raw text |\n| `${time}` | SMS received time (ISO format) |\n\n## Webhook Configuration Options\n\n### 1\\. HTTP Method\n\nSupported methods:\n\n- `GET`\n    \n- `POST`\n    \n\nSelect the method supported by your webhook endpoint.\n\n---\n\n### 2\\. Request URL\n\nYour webhook endpoint URL where incoming SMS data will be sent.\n\n**Example**\n\n```\nhttps://example.com/webhook/incoming-sms\n\n ```\n\n---\n\n## GET Request Configuration\n\n### Query Parameters\n\nIf your webhook uses **GET**, parameters will be appended to the URL.\n\n**Example Configuration**\n\n| Key | Value |\n| --- | --- |\n| source | `${source}` |\n| destination | `${destination}` |\n| text | `${text}` |\n| time | `${time}` |\n\n### Final Request (Auto-Generated)\n\n```\nGET https://example.com/webhook/incoming-sms?\nsource=919876543210&\ndestination=911234567890&\ntext=Hello World&\ntime=2025-12-15T09:45:30Z\n\n ```\n\n---\n\n## POST Request Configuration\n\n### Body Type\n\nSelect the body type supported by your webhook:\n\n- `application/json`\n    \n- `application/x-www-form-urlencoded`\n    \n- `multipart/form-data`\n    \n\n### Body Parameters\n\nIf your webhook uses **POST**, parameters will be appended to Body.\n\n**Example Configuration**\n\n| Key | Value |\n| --- | --- |\n| source | `${source}` |\n| destination | `${destination}` |\n| text | `${text}` |\n| time | `${time}` |\n\n### Actual Payload Sent\n\n```\n{\n  \"source\": \"919876543210\",\n  \"destination\": \"911234567890\",\n  \"text\": \"Hello World\",\n  \"time\": \"2025-12-15T09:45:30Z\"\n}\n\n ```\n\n### Final Request (Auto-Generated)\n\n```\ncurl -X POST https://example.com/webhook/incoming-sms \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"source\": \"919876543210\",\n    \"destination\": \"911234567890\",\n    \"text\": \"Hello World\",\n    \"time\": \"2025-12-15T09:45:30Z\"\n  }'\n\n ```\n\nWebhook examples for receiving incoming SMS via GET or POST requests.","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","isPublicCollection":false,"owner":"26315233","collectionId":"2848a33b-e961-487f-9462-9be81d2fc9d6","publishedId":"2sB3dTsTYP","public":true,"publicUrl":"https://documenter-api.postman.tech/view/26315233/2sB3dTsTYP","privateUrl":"https://go.postman.co/documentation/26315233-2848a33b-e961-487f-9462-9be81d2fc9d6","customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"documentationLayout":"classic-double-column","customisation":{"metaTags":[{"name":"description","value":""},{"name":"title","value":""}],"appearance":{"default":"dark","themes":[{"name":"dark","logo":null,"colors":{"top-bar":"212121","right-sidebar":"303030","highlight":"FF6C37"}},{"name":"light","logo":null,"colors":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"}}]}},"version":"8.10.1","publishDate":"2025-12-15T05:26:18.000Z","activeVersionTag":"latest","documentationTheme":"light","metaTags":{"title":"","description":""},"logos":{"logoLight":null,"logoDark":null}},"statusCode":200},"environments":[{"name":"Chrome Extension API","id":"6a4c98cb-9eb2-4247-8abf-4016a2f0d824","owner":"26315233","values":[{"key":"current_time_utc","value":"","enabled":true,"type":"any"},{"key":"current_message","value":"","enabled":true,"type":"any"},{"key":"message_counter","value":"","enabled":true,"type":"any"},{"key":"current_call_id","value":"","enabled":true,"type":"any"},{"key":"call_id_counter","value":"","enabled":true,"type":"any"},{"key":"client_id","value":"","enabled":true,"type":"secret"},{"key":"client_secret","value":"","enabled":true,"type":"secret"},{"key":"username","value":"","enabled":true,"type":"secret"},{"key":"password","value":"","enabled":true,"type":"secret"},{"key":"refresh_token","value":"","enabled":true,"type":"secret"}],"published":true}],"user":{"authenticated":false,"permissions":{"publish":false}},"run":{"button":{"js":"https://run.pstmn.io/button.js","css":"https://run.pstmn.io/button.css"}},"web":"https://www.getpostman.com/","team":{"logo":"https://res.cloudinary.com/postman/image/upload/t_team_logo_pubdoc/v1/team/768118b36f06c94b0306958b980558e6915839447e859fe16906e29d683976f0","favicon":""},"isEnvFetchError":false,"languages":"[{\"key\":\"csharp\",\"label\":\"C#\",\"variant\":\"HttpClient\"},{\"key\":\"csharp\",\"label\":\"C#\",\"variant\":\"RestSharp\"},{\"key\":\"curl\",\"label\":\"cURL\",\"variant\":\"cURL\"},{\"key\":\"dart\",\"label\":\"Dart\",\"variant\":\"http\"},{\"key\":\"go\",\"label\":\"Go\",\"variant\":\"Native\"},{\"key\":\"http\",\"label\":\"HTTP\",\"variant\":\"HTTP\"},{\"key\":\"java\",\"label\":\"Java\",\"variant\":\"OkHttp\"},{\"key\":\"java\",\"label\":\"Java\",\"variant\":\"Unirest\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"Fetch\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"jQuery\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"XHR\"},{\"key\":\"c\",\"label\":\"C\",\"variant\":\"libcurl\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Axios\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Native\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Request\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Unirest\"},{\"key\":\"objective-c\",\"label\":\"Objective-C\",\"variant\":\"NSURLSession\"},{\"key\":\"ocaml\",\"label\":\"OCaml\",\"variant\":\"Cohttp\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"cURL\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"Guzzle\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"HTTP_Request2\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"pecl_http\"},{\"key\":\"powershell\",\"label\":\"PowerShell\",\"variant\":\"RestMethod\"},{\"key\":\"python\",\"label\":\"Python\",\"variant\":\"http.client\"},{\"key\":\"python\",\"label\":\"Python\",\"variant\":\"Requests\"},{\"key\":\"r\",\"label\":\"R\",\"variant\":\"httr\"},{\"key\":\"r\",\"label\":\"R\",\"variant\":\"RCurl\"},{\"key\":\"ruby\",\"label\":\"Ruby\",\"variant\":\"Net::HTTP\"},{\"key\":\"shell\",\"label\":\"Shell\",\"variant\":\"Httpie\"},{\"key\":\"shell\",\"label\":\"Shell\",\"variant\":\"wget\"},{\"key\":\"swift\",\"label\":\"Swift\",\"variant\":\"URLSession\"}]","languageSettings":[{"key":"csharp","label":"C#","variant":"HttpClient"},{"key":"csharp","label":"C#","variant":"RestSharp"},{"key":"curl","label":"cURL","variant":"cURL"},{"key":"dart","label":"Dart","variant":"http"},{"key":"go","label":"Go","variant":"Native"},{"key":"http","label":"HTTP","variant":"HTTP"},{"key":"java","label":"Java","variant":"OkHttp"},{"key":"java","label":"Java","variant":"Unirest"},{"key":"javascript","label":"JavaScript","variant":"Fetch"},{"key":"javascript","label":"JavaScript","variant":"jQuery"},{"key":"javascript","label":"JavaScript","variant":"XHR"},{"key":"c","label":"C","variant":"libcurl"},{"key":"nodejs","label":"NodeJs","variant":"Axios"},{"key":"nodejs","label":"NodeJs","variant":"Native"},{"key":"nodejs","label":"NodeJs","variant":"Request"},{"key":"nodejs","label":"NodeJs","variant":"Unirest"},{"key":"objective-c","label":"Objective-C","variant":"NSURLSession"},{"key":"ocaml","label":"OCaml","variant":"Cohttp"},{"key":"php","label":"PHP","variant":"cURL"},{"key":"php","label":"PHP","variant":"Guzzle"},{"key":"php","label":"PHP","variant":"HTTP_Request2"},{"key":"php","label":"PHP","variant":"pecl_http"},{"key":"powershell","label":"PowerShell","variant":"RestMethod"},{"key":"python","label":"Python","variant":"http.client"},{"key":"python","label":"Python","variant":"Requests"},{"key":"r","label":"R","variant":"httr"},{"key":"r","label":"R","variant":"RCurl"},{"key":"ruby","label":"Ruby","variant":"Net::HTTP"},{"key":"shell","label":"Shell","variant":"Httpie"},{"key":"shell","label":"Shell","variant":"wget"},{"key":"swift","label":"Swift","variant":"URLSession"}],"languageOptions":[{"label":"C# - HttpClient","value":"csharp - HttpClient - C#"},{"label":"C# - RestSharp","value":"csharp - RestSharp - C#"},{"label":"cURL - cURL","value":"curl - cURL - cURL"},{"label":"Dart - http","value":"dart - http - Dart"},{"label":"Go - Native","value":"go - Native - Go"},{"label":"HTTP - HTTP","value":"http - HTTP - HTTP"},{"label":"Java - OkHttp","value":"java - OkHttp - Java"},{"label":"Java - Unirest","value":"java - Unirest - Java"},{"label":"JavaScript - Fetch","value":"javascript - Fetch - JavaScript"},{"label":"JavaScript - jQuery","value":"javascript - jQuery - JavaScript"},{"label":"JavaScript - XHR","value":"javascript - XHR - JavaScript"},{"label":"C - libcurl","value":"c - libcurl - C"},{"label":"NodeJs - Axios","value":"nodejs - Axios - NodeJs"},{"label":"NodeJs - Native","value":"nodejs - Native - NodeJs"},{"label":"NodeJs - Request","value":"nodejs - Request - NodeJs"},{"label":"NodeJs - Unirest","value":"nodejs - Unirest - NodeJs"},{"label":"Objective-C - NSURLSession","value":"objective-c - NSURLSession - Objective-C"},{"label":"OCaml - Cohttp","value":"ocaml - Cohttp - OCaml"},{"label":"PHP - cURL","value":"php - cURL - PHP"},{"label":"PHP - Guzzle","value":"php - Guzzle - PHP"},{"label":"PHP - HTTP_Request2","value":"php - HTTP_Request2 - PHP"},{"label":"PHP - pecl_http","value":"php - pecl_http - PHP"},{"label":"PowerShell - RestMethod","value":"powershell - RestMethod - PowerShell"},{"label":"Python - http.client","value":"python - http.client - Python"},{"label":"Python - Requests","value":"python - Requests - Python"},{"label":"R - httr","value":"r - httr - R"},{"label":"R - RCurl","value":"r - RCurl - R"},{"label":"Ruby - Net::HTTP","value":"ruby - Net::HTTP - Ruby"},{"label":"Shell - Httpie","value":"shell - Httpie - Shell"},{"label":"Shell - wget","value":"shell - wget - Shell"},{"label":"Swift - URLSession","value":"swift - URLSession - Swift"}],"layoutOptions":[{"value":"classic-single-column","label":"Single Column"},{"value":"classic-double-column","label":"Double Column"}],"versionOptions":[],"environmentOptions":[{"value":"0","label":"No Environment"},{"label":"Chrome Extension API","value":"26315233-6a4c98cb-9eb2-4247-8abf-4016a2f0d824"}],"canonicalUrl":"https://documenter.gw.postman.com/view/metadata/2sB3dTsTYP"}