GET api/mvno/contel/get/saldo/{phone}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
phone | string |
Required |
Body Parameters
None.
Response Information
Resource Description
SaldoResponseName | Description | Type | Additional information |
---|---|---|---|
line | string |
None. |
|
retorno | boolean |
None. |
|
mensagem | string |
None. |
|
message | string |
None. |
|
data | SaldoData |
None. |
Response Formats
application/json, text/json
Sample:
{ "line": "sample string 1", "retorno": true, "mensagem": "sample string 3", "message": "sample string 4", "data": { "restante_dados": 1.1, "restante_minutos": 2, "restante_sms": 3 } }
text/html
Sample:
{"line":"sample string 1","retorno":true,"mensagem":"sample string 3","message":"sample string 4","data":{"restante_dados":1.1,"restante_minutos":2,"restante_sms":3}}
application/xml, text/xml
Sample:
<SaldoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FoneClube.Business.Commons.Entities.FoneClube"> <data> <restante_dados>1.1</restante_dados> <restante_minutos>2</restante_minutos> <restante_sms>3</restante_sms> </data> <line>sample string 1</line> <mensagem>sample string 3</mensagem> <message>sample string 4</message> <retorno>true</retorno> </SaldoResponse>