4.1.14 Rates
Rates
URL: /rates.ashx
The method returns the rates for calls and text messages for a given country or a specific number, depending on what parameter is sent. If both parameters are provided, country rates will be returned. It is also possible to download rates from a given client's tariff, in which case the client's SIP login and password must also be sent to the server.
Parameter | Description |
---|---|
l | Login - login of SIP account (optional) |
p | Password - password of SIP account SIP (optional) |
cc | Country code |
n | Number |
To check rates for specific country:
--header 'User-Agent: vippie;ios;1.2.3' \ --header 'Content-Type: text/plain' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \ --header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \ --header 'X-VIPPIE-DEVICE-NAME: iPhone8,1' |
---|
Returned value
To check destination rate for number you want to dial and display it under the number:
curl --location --request POST 'https://xxxxxxxxx/emcd/rates.ashx?l=piotr2&p=wielkipiotr&n=44652856655' \ --header 'User-Agent: vippie;ios;1.2.3' \ --header 'Content-Type: text/plain' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry' \ --header 'X-VIPPIE-DEVICE-ID: ff66fc693846285d' \ --header 'X-VIPPIE-DEVICE-NAME: iPhone8,1' |
---|
Returned value
Response after sending the cc parameter:
{ "cr": [ { "d" : string, "r" : decimal } ], "sr": [ { "d" : string, "r" : decimal } ], "pl": [ { "id": int, "d" : string, "n" : string, "pr": bool, "pt": int, "pn": int, "pc": decimal, "sc": decimal } ] }
where:
- cr - contains information about call rates (d - description, r - rate),
- sr - contains information about SMS rates (d - description, r - rate),
- pl - contains information about the plans that could exist in a given country code (id - plan identifier, d - description, n - name, pr - whether the plan is periodic, pt - period type, pn - period number, pc - period cost, sc - startup cost),
Response after sending the n parameter:
{ "cr": { r: "0.453", d: "desc"}, "sr": { r: "0.123", d: "desc"} }
If an error occurs on the server or any of the parameters contain an incorrect value, the method will return the appropriate 3-digit error code shown below:
Code | Description |
---|---|
400 | Incorrect parameters - one of the parameters was not provided |
404 | Invalid HTTP method - only POST method accepted |
500 | Internal server error |