GET api/Titulos/{id}/boleto
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TituloBoletoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| LinhaDigitavel | string |
None. |
|
| Vencimento | date |
None. |
|
| Valor | decimal number |
None. |
|
| BoletoPDFBase64 | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"LinhaDigitavel": "sample string 1",
"Vencimento": "2025-12-11T07:47:18.4282742-03:00",
"Valor": 3.0,
"BoletoPDFBase64": "sample string 4"
}
application/xml, text/xml
Sample:
<TituloBoletoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VanRooy.CallSolution.Shared.API.Response"> <BoletoPDFBase64>sample string 4</BoletoPDFBase64> <LinhaDigitavel>sample string 1</LinhaDigitavel> <Valor>3</Valor> <Vencimento>2025-12-11T07:47:18.4282742-03:00</Vencimento> </TituloBoletoResponse>