{"activeVersionTag":"latest","latestAvailableVersionTag":"latest","collection":{"info":{"_postman_id":"c2ab2f4b-a558-415c-9c4b-741c877c47ee","name":"Dialics API","description":"# Integrate Dialics functionality with Your App, Service or Website!\n\n## 👋Introduction\n\nFor a considerable amount of time Dialics Ecosystem boosts our customer's marketing campaigns and ads performace. Now You can do even more with the use of our REST API, specifically designed to conform Your business needs. In this documentation reference we described how You can integrate Your application using our REST API. Web API distributes a set of HTTP endpoints that drive a big part of Dialics system's rich functionality. However, if You still lack some stuff, required for automating Your use cases, you can always ask us to extend this API: [https://help.dialics.com](). In following materials you will find out how to get access to Dialics API, how to perform authentication, build queries and parse responses. Our engineers designed Web API considering usability and simplicity first. It's never been that easy to Integrate!\n\n###### Get stuck? 🤔 Contact us for support: [https://help.dialics.com]().\n\n## ❗Just before you start\n\nIf You already have an account and access tokens, you may skip this step and move right to the Overview section. This section provides short guide of how to request auth credentials, required for authorizing Your API queries.\n\n- **Log in to Your Dialics account.** If You still don't have one, You can request a demo or start a free trial on the main page: [https://dialics.com.]() If You face any complications on this step, our support is always happy to guide you through registration process: [https://help.dialics.com.]()\n- **Navigate to API Tokens page.** ❗**Important note! Only Account Owner is authorized to perform this action.** If you are permitted to request Api Tokens, move to Call Tracking -> Workspace Settings -> Security -> API-token template, as shown on image below. Push \"Create\" button to create new API Access Token.\n    \n\n- In ADD TOKEN pop up, you should set the name for your API token and push \"Next\". This name will be assigned for new token, so you will be able to identify it in future.\n    \n\n<img src=\"https://content.pstmn.io/89408a4b-35b5-413f-9998-742aca546f41/YWRkX3Rva2VuX3BvcF91cC5qcGc=\" alt=\"Token%20name%20setting%20pop%20up\">\n\n- Next pop up require You to verify you identity. You should specify Your account Email and Password and push \"Next\". After this step new token will be generated.\n    \n\n<img src=\"https://content.pstmn.io/de176016-82db-4b68-b2c3-22c34b317487/aWRlbnRpdHlfY29uZmlybWF0aW9uX3BvcF91cC5qcGc=\" alt=\"Identity%20verification%20pop%20up\">\n\n- After setting Api Token name and submitting auth credentials, you should recieve generated Api Token. ❗**Important note! You will be able to see newly generated Api Token only once. So, our recommendation is to save it to a safe place for futher usage.**\n    \n\n<img src=\"https://content.pstmn.io/6336057e-3a99-4566-a0ec-4506a0aee788/aW1hZ2UucG5n\" alt=\"Pop-up%20with%20new%20Api%20Token\" width=\"381\" height=\"728\">\n\nCongrats! Now we all set.👌 Before submitting first requests, you may want to observe our Web Api design features. Next section gives a brief Overview of our API. We recommend to take a look at it first.\n\n## 🔎Overview\n\nOur API uses JSON over HTTPv1 protocol. Most endpoints generate responses with standardised structure. Each response typically implyes following structural elements:\n\n``` json\n{\n    \"success\": true, \n    \"message\": \"Request processed successfully\", \n    \"payload\": { \n        \"slug\": \"random_string_32\", \n        \"username\": \"Mr. Andersen\" \n    }    \n}\n\n ```\n\nThey are described in following table:\n\n| **Data Field** | **Description** | **Data Type** | **Values** |\n| --- | --- | --- | --- |\n| success | Can be defined as an indicator, showing wether the request was processed successfully or not. | Boolean | true/false |\n| message | In more detailed way describes request processing results. May be empty. | String | Text description or empty string |\n| payload | Nested structure, that contains Your actual data. | Object | Structure and content depends on a request type |\n\n## Autorization\n\nFor authorizing Your requests we use bearer tokens. To authorize the request, You should specify the Authorization header, with following record:\n\n`Bearer {{api-token}}`\n\nIt is important to set token with Bearer term delimeted with space. {{api-token}} in this example should be replaced with actual token, that You generated earlier.\n\n## Pagination and Collections\n\nIn our API You are able to retrieve collections of entities. For example, with this request you will fetch all destinations in a particular workspace.\n\n`https://dialics/api/v1/your-workspace/destinations`\n\nIn dialics API you can easily paginate such requests. To achieve that, You should specify page and perPage paraments in a request.\n\n`https://dialics/api/v1/your-workspace/destinations?page=1&perPage=10`\n\nTo keep requests valid when specifying either of those parameters, another is also required.  \nYou can retrieve 10, 25, 50 or 100 entities per page. If you will set perPage to any other value, 10 entities will be returned in response as default amount. With each paginated query last_page, current_page and data fields are generally specified in response payload object.\n\n## Enums\n\nMany entities in a system have fields like countries and timezones. They are predefined and can be set using their unique identifiers. To figure out what id should be used to set the needed value, You can use following tables:\n\nCountries:\n\n| **Country id** | **Country** |\n| --- | --- |\n| 1 | United States |\n| 2 | Argentina |\n| 3 | Australia |\n| 4 | Austria |\n| 5 | Bahrain |\n| 6 | Belgium |\n| 7 | Brazil |\n| 8 | Bulgaria |\n| 9 | Canada |\n| 10 | Chile |\n| 11 | China |\n| 12 | Colombia |\n| 13 | Croatia |\n| 14 | Cuba |\n| 15 | Cyprus |\n| 16 | Czech Republic |\n| 17 | Denmark |\n| 18 | Dominican Republic |\n| 19 | Egypt |\n| 20 | El Salvador |\n| 21 | Estonia |\n| 22 | Finland |\n| 23 | France |\n| 24 | Georgia |\n| 25 | Germany |\n| 26 | Ghana |\n| 27 | Greece |\n| 28 | Honk Kong |\n| 29 | Hungary |\n| 30 | India |\n| 31 | Indonesia |\n| 32 | Ireland |\n| 33 | Israel |\n| 34 | Italy |\n| 35 | Japan |\n| 36 | Latvia |\n| 37 | Lithuania |\n| 38 | Luxembourg |\n| 39 | Malaysia |\n| 40 | Malta |\n| 41 | Mexico |\n| 42 | Netherlands |\n| 43 | New Zealand |\n| 44 | Norway |\n| 45 | Pakistan |\n| 46 | Panama |\n| 47 | Peru |\n| 48 | Philippines |\n| 49 | Poland |\n| 50 | Portugal |\n| 51 | Puerto Rico |\n| 52 | Qatar |\n| 53 | Romania |\n| 54 | ~~Russia~~ |\n| 55 | Saudi Arabia |\n| 56 | Singapore |\n| 57 | Slovakia |\n| 58 | Slovenia |\n| 59 | South Africa |\n| 60 | South korea |\n| 61 | Spain |\n| 62 | Sweden |\n| 63 | Switzerland |\n| 64 | Taiwan |\n| 65 | Thailand |\n| 66 | Turkey |\n| 67 | Ukraine |\n| 68 | United Arab Emirates |\n| 69 | United Kingdom |\n| 70 | Vietnam |\n\nTimezones:\n\n| **Time Zone Id** | **Display** |\n| --- | --- |\n| 1 | (UTC-12:00) International Date Line West |\n| 2 | (UTC-11:00) Coordinated Universal Time-11 |\n| 3 | (UTC-10:00) Aleutian Islands |\n| 4 | (UTC-10:00) Hawaii |\n| 5 | (UTC-09:30) Marquesas Islands |\n| 6 | (UTC-09:00) Alaska |\n| 7 | (UTC-09:00) Coordinated Universal Time-09 |\n| 8 | (UTC-08:00) Baja California |\n| 9 | (UTC-08:00) Coordinated Universal Time-08 |\n| 10 | (UTC-08:00) Pacific Time (US & Canada) |\n| 11 | (UTC-07:00) Arizona |\n| 12 | (UTC-07:00) Chihuahua, La Paz, Mazatlan |\n| 13 | (UTC-07:00) Mountain Time (US & Canada) |\n| 14 | (UTC-06:00) Central America |\n| 15 | (UTC-06:00) Central Time (US & Canada) |\n| 16 | (UTC-06:00) Easter Island |\n| 17 | (UTC-06:00) Guadalajara, Mexico City, Monterrey |\n| 18 | (UTC-06:00) Saskatchewan |\n| 19 | (UTC-05:00) Bogota, Lima, Quito, Rio Branco |\n| 20 | (UTC-05:00) Chetumal |\n| 21 | (UTC-05:00) Eastern Time (US & Canada) |\n| 22 | (UTC-05:00) Haiti |\n| 23 | (UTC-05:00) Havana |\n| 24 | (UTC-05:00) Indiana (East) |\n| 25 | (UTC-05:00) Turks and Caicos |\n| 26 | (UTC-04:00) Asuncion |\n| 27 | (UTC-04:00) Atlantic Time (Canada) |\n| 28 | (UTC-04:00) Caracas |\n| 29 | (UTC-04:00) Cuiaba |\n| 30 | (UTC-04:00) Georgetown, La Paz, Manaus, San Juan |\n| 31 | (UTC-04:00) Santiago |\n| 32 | (UTC-03:30) Newfoundland |\n| 33 | (UTC-03:00) Araguaina |\n| 34 | (UTC-03:00) Brasilia |\n| 35 | (UTC-03:00) Cayenne, Fortaleza |\n| 36 | (UTC-03:00) City of Buenos Aires |\n| 37 | (UTC-03:00) Greenland |\n| 38 | (UTC-03:00) Montevideo |\n| 39 | (UTC-03:00) Punta Arenas |\n| 40 | (UTC-03:00) Saint Pierre and Miquelon |\n| 41 | (UTC-03:00) Salvador |\n| 42 | (UTC-02:00) Coordinated Universal Time-02 |\n| 43 | (UTC-01:00) Azores |\n| 44 | (UTC-01:00) Cabo Verde Is. |\n| 45 | (UTC) Coordinated Universal Time |\n| 46 | (UTC+00:00) Dublin, Edinburgh, Lisbon, London |\n| 47 | (UTC+00:00) Monrovia, Reykjavik |\n| 48 | (UTC+00:00) Sao Tome |\n| 49 | (UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna |\n| 50 | (UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague |\n| 51 | (UTC+01:00) Brussels, Copenhagen, Madrid, Paris |\n| 52 | (UTC+01:00) Casablanca |\n| 53 | (UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb |\n| 54 | (UTC+01:00) West Central Africa |\n| 55 | (UTC+02:00) Amman |\n| 56 | (UTC+02:00) Athens, Bucharest |\n| 57 | (UTC+02:00) Beirut |\n| 58 | (UTC+02:00) Cairo |\n| 59 | (UTC+02:00) Chisinau |\n| 60 | (UTC+02:00) Damascus |\n| 61 | (UTC+02:00) Gaza, Hebron |\n| 62 | (UTC+02:00) Harare, Pretoria |\n| 63 | (UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius |\n| 64 | (UTC+02:00) Jerusalem |\n| 65 | (UTC+02:00) Kaliningrad |\n| 66 | (UTC+02:00) Khartoum |\n| 67 | (UTC+02:00) Tripoli |\n| 68 | (UTC+02:00) Windhoek |\n| 69 | (UTC+03:00) Baghdad |\n| 70 | (UTC+03:00) Istanbul |\n| 71 | (UTC+03:00) Kuwait, Riyadh |\n| 72 | (UTC+03:00) Minsk |\n| 73 | (UTC+03:00) Moscow, St. Petersburg |\n| 74 | (UTC+03:00) Nairobi |\n| 75 | (UTC+03:30) Tehran |\n| 76 | (UTC+04:00) Abu Dhabi, Muscat |\n| 77 | (UTC+04:00) Astrakhan, Ulyanovsk |\n| 78 | (UTC+04:00) Baku |\n| 79 | (UTC+04:00) Izhevsk, Samara |\n| 80 | (UTC+04:00) Port Louis |\n| 81 | (UTC+04:00) Saratov |\n| 82 | (UTC+04:00) Tbilisi |\n| 83 | (UTC+04:00) Volgograd |\n| 84 | (UTC+04:00) Yerevan |\n| 85 | (UTC+04:30) Kabul |\n| 86 | (UTC+05:00) Ashgabat, Tashkent |\n| 87 | (UTC+05:00) Ekaterinburg |\n| 88 | (UTC+05:00) Islamabad, Karachi |\n| 89 | (UTC+05:00) Qyzylorda |\n| 90 | (UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi |\n| 91 | (UTC+05:30) Sri Jayawardenepura |\n| 92 | (UTC+05:45) Kathmandu |\n| 93 | (UTC+06:00) Astana |\n| 94 | (UTC+06:00) Dhaka |\n| 95 | (UTC+06:00) Omsk |\n| 96 | (UTC+06:30) Yangon (Rangoon) |\n| 97 | (UTC+07:00) Bangkok, Hanoi, Jakarta |\n| 98 | (UTC+07:00) Barnaul, Gorno-Altaysk |\n| 99 | (UTC+07:00) Hovd |\n| 100 | (UTC+07:00) Krasnoyarsk |\n| 101 | (UTC+07:00) Novosibirsk |\n| 102 | (UTC+07:00) Tomsk |\n| 103 | (UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi |\n| 104 | (UTC+08:00) Irkutsk |\n| 105 | (UTC+08:00) Kuala Lumpur, Singapore |\n| 106 | (UTC+08:00) Perth |\n| 107 | (UTC+08:00) Taipei |\n| 108 | (UTC+08:00) Ulaanbaatar |\n| 109 | (UTC+08:45) Eucla |\n| 110 | (UTC+09:00) Chita |\n| 111 | (UTC+09:00) Osaka, Sapporo, Tokyo |\n| 112 | (UTC+09:00) Pyongyang |\n| 113 | (UTC+09:00) Seoul |\n| 114 | (UTC+09:00) Yakutsk |\n| 115 | (UTC+09:30) Adelaide |\n| 116 | (UTC+09:30) Darwin |\n| 117 | (UTC+10:00) Brisbane |\n| 118 | (UTC+10:00) Canberra, Melbourne, Sydney |\n| 119 | (UTC+10:00) Guam, Port Moresby |\n| 120 | (UTC+10:00) Hobart |\n| 121 | (UTC+10:00) Vladivostok |\n| 122 | (UTC+10:30) Lord Howe Island |\n| 123 | (UTC+11:00) Bougainville Island |\n| 124 | (UTC+11:00) Chokurdakh |\n| 125 | (UTC+11:00) Magadan |\n| 126 | (UTC+11:00) Norfolk Island |\n| 127 | (UTC+11:00) Sakhalin |\n| 128 | (UTC+11:00) Solomon Is., New Caledonia |\n| 129 | (UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky |\n| 130 | (UTC+12:00) Auckland, Wellington |\n| 131 | (UTC+12:00) Coordinated Universal Time+12 |\n| 132 | (UTC+12:00) Fiji |\n| 133 | (UTC+12:45) Chatham Islands |\n| 134 | (UTC+13:00) Coordinated Universal Time+13 |\n| 135 | (UTC+13:00) Nuku'alofa |\n| 136 | (UTC+13:00) Samoa |\n| 137 | (UTC+14:00) Kiritimati Island |","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","isPublicCollection":false,"owner":"27980813","team":5239581,"collectionId":"c2ab2f4b-a558-415c-9c4b-741c877c47ee","publishedId":"2s93zE4LKJ","public":true,"publicUrl":"https://apidocs.dialics.com","privateUrl":"https://go.postman.co/documentation/27980813-c2ab2f4b-a558-415c-9c4b-741c877c47ee","customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"6F4FCC"},"documentationLayout":"classic-double-column","customisation":{"metaTags":[{"name":"description","value":"Dialics call tracker public API documentation gives You the ability to integrate and automate you services and processes with powerful Dialics features"},{"name":"title","value":"Dialics API documentation"}],"appearance":{"default":"light","themes":[{"name":"dark","logo":"https://content.pstmn.io/568c9786-3786-49fc-ac54-74c92151d111/RnVsbC5wbmc=","colors":{"top-bar":"212121","right-sidebar":"303030","highlight":"6F4FCC"}},{"name":"light","logo":"https://content.pstmn.io/4987fb5d-0e57-49f1-9968-a42a958c9a69/RnVsbC0xICgyKS5wbmc=","colors":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"6F4FCC"}}]}},"version":"8.10.1","publishDate":"2024-05-20T14:16:23.000Z","activeVersionTag":"latest","documentationTheme":"light","metaTags":{"title":"Dialics API documentation","description":"Dialics call tracker public API documentation gives You the ability to integrate and automate you services and processes with powerful Dialics features"},"logos":{"logoLight":"https://content.pstmn.io/4987fb5d-0e57-49f1-9968-a42a958c9a69/RnVsbC0xICgyKS5wbmc=","logoDark":"https://content.pstmn.io/568c9786-3786-49fc-ac54-74c92151d111/RnVsbC5wbmc="}},"statusCode":200},"environments":[{"name":"Dialcis Environment","id":"613461bf-fc26-46c2-be08-53408193d7de","owner":"27980813","values":[{"key":"url","value":"https://domain.com","enabled":true,"type":"default"},{"key":"accountSlug","value":"{account-slug}","enabled":true,"type":"default"},{"key":"workspaceSlug","value":"{workspace-slug}","enabled":true,"type":"default"},{"key":"trafficSourceSlug","value":"{traffic-source-slug}","enabled":true,"type":"default"},{"key":"bearer_token","value":"","enabled":true,"type":"default"},{"key":"api_url","value":"https://api-gateway.dialics.com","enabled":true,"type":"default"},{"key":"api_token","value":"","enabled":true,"type":"secret"},{"key":"destinationsSlug","value":"{destination-slug}","enabled":true,"type":"default"},{"key":"campaignSlug","value":"{campaign-slug}","enabled":true,"type":"default"},{"key":"buyerSlug","value":"{buyer-slug}","enabled":true,"type":"default"},{"key":"vendorSlug","value":"{vendor-slug}","enabled":true,"type":"default"},{"key":"numberSlug","value":"{number-slug}","enabled":true,"type":"default"},{"key":"numberPoolSlug","value":"{number-pool-slug}","enabled":true,"type":"default"}],"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/0191304dee65aafe553d2368cd0d55a124b3e3d1d954e78ba37030dddf9dd6f3","favicon":"https://dialics.com/favicon.ico"},"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":"Dialcis Environment","value":"27980813-613461bf-fc26-46c2-be08-53408193d7de"}],"canonicalUrl":"https://apidocs.dialics.com/view/metadata/2s93zE4LKJ"}