GET
https://api.octopush.com/v1/public/wallet/check-creditsCodificación : UTF-8
Autentificación
Su “api-key” y “api-login” deben ser añadidos en las cabeceras.
Definición
Este servicio web le permite recuperar su saldo por SMS.
El resultado te da tu saldo en Premium y LowCost.
Parámetros especiales
Campo | Tipo | Descripción |
---|---|---|
country_codes[] | array | (opcional) List of country codes you want your credit to be displayed for.. |
Ejemplo Curl
curl -X GET \ 'https://api.octopush.com/v1/public/wallet/check-credits?country_codes[]=FR&country_codes[]=ES&country_codes[]=GB' \ -H 'Content-Type: application/json' \ -H 'api-key: ************' \ -H 'api-login: ******@email.org' \ -H 'cache-control: no-cache'
One line code
curl -X GET 'https://api.octopush.com/v1/public/wallet/check-credits?country_codes[]=FR&country_codes[]=ES&country_codes[]=GB' -H 'Content-Type: application/json' -H 'api-key: ************' -H 'api-login: ******@email.org' -H 'cache-control: no-cache'
Respuesta JSON
Success : 200 OK
{ "ES" : { "premium_sms": 5, "vocal_sms": 0, "low_cost_sms": 0, "hlr": 87 }, "FR": { "premium_sms": 10, "vocal_sms": 0, "low_cost_sms": 21, "hlr": 87 }, "??": {"..."}, "??": {"..."}, "??": {"..."}, "GB": { "premium_sms": 5, "vocal_sms": 0, "low_cost_sms": 0, "hlr": 87 } }