GET Boletos/PorVencimento
Retorna os boletos por data de vencimento utilizando os parametros: chave_api*, data_ini e data_fim.
Exemplo: https://api.serodonto.com.br/Boletos/PorVencimento?chave_api=chave&data_ini=2022-01-01&data_fim=2022-01-01
* Filtros obrigatórios.
Informações da Requisição
Parâmetros URI
Nenhuma.
Parâmetros do Corpo
Nenhum.
Informações da Resposta
Descrição do Recurso
Dados em JSON.
BoletosVencidosModel| Nome | Descrição | Tipo | Informações adicionais |
|---|---|---|---|
| id_receber | integer |
Nenhuma. |
|
| valor | string |
Nenhuma. |
|
| id_cliente | integer |
Nenhuma. |
|
| nome_completo | string |
Nenhuma. |
|
| numero_documento | string |
Nenhuma. |
|
| nome_cedente | string |
Nenhuma. |
|
| numero_cartao | string |
Nenhuma. |
|
| link_boleto | string |
Nenhuma. |
|
| data_vencimento | string |
Nenhuma. |
|
| juros | string |
Nenhuma. |
|
| juros_boleto | string |
Nenhuma. |
Formatos da Resposta
application/json, text/json
Sample:
{
"id_receber": 1,
"valor": "sample string 2",
"id_cliente": 3,
"nome_completo": "sample string 4",
"numero_documento": "sample string 5",
"nome_cedente": "sample string 6",
"numero_cartao": "sample string 7",
"link_boleto": "sample string 8",
"data_vencimento": "sample string 9",
"juros": "sample string 10",
"juros_boleto": "sample string 11"
}
text/html
Sample:
{"id_receber":1,"valor":"sample string 2","id_cliente":3,"nome_completo":"sample string 4","numero_documento":"sample string 5","nome_cedente":"sample string 6","numero_cartao":"sample string 7","link_boleto":"sample string 8","data_vencimento":"sample string 9","juros":"sample string 10","juros_boleto":"sample string 11"}
application/xml, text/xml
Sample:
<BoletosController.BoletosVencidosModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SerodontoREST.Controllers"> <data_vencimento>sample string 9</data_vencimento> <id_cliente>3</id_cliente> <id_receber>1</id_receber> <juros>sample string 10</juros> <juros_boleto>sample string 11</juros_boleto> <link_boleto>sample string 8</link_boleto> <nome_cedente>sample string 6</nome_cedente> <nome_completo>sample string 4</nome_completo> <numero_cartao>sample string 7</numero_cartao> <numero_documento>sample string 5</numero_documento> <valor>sample string 2</valor> </BoletosController.BoletosVencidosModel>