GET api/Titulos/PDFBoleto/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

TituloBoletoResponse
NameDescriptionTypeAdditional 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:19.4436364-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:19.4436364-03:00</Vencimento>
</TituloBoletoResponse>