Use this method to check if a phone number is available.
The phone number.
"+48111222333"
Request was successfully processed
Additional data
var client = new RestClient("https://api.redlink.pl/v2.1/sms/hlr"); var request = new RestRequest(Method.POST); request.AddHeader("content-type", "application/json"); request.AddHeader("authorization", "REPLACE_KEY_VALUE"); request.AddParameter("application/json", "{\"phone\":\"+48111222333\"}", ParameterType.RequestBody); IRestResponse response = client.Execute(request);
{ "meta": { "numberOfErrors": 0, "numberOfData": 1, "status": 200, "uniqId": "00d928f759" }, "data": [ { "phone": "text", "status": "text", "imsi": null, "network": "text", "ported": "text", "networkPorted": "text", "description": "text" } ] }