GET api/v1/PlanoPagarMe/PagarMe/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

PlanoPagarMeModel
NameDescriptionTypeAdditional information
Id

integer

None.

IdPlanoPagarMe

integer

None.

Amount

integer

None.

Days

integer

None.

Name

string

None.

TrialDays

integer

None.

Charges

string

None.

Installments

integer

None.

DataCadastro

date

None.

Status

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "IdPlanoPagarMe": 2,
  "Amount": 3,
  "Days": 4,
  "Name": "sample string 5",
  "TrialDays": 6,
  "Charges": "sample string 7",
  "Installments": 8,
  "DataCadastro": "2026-01-21T11:12:21.1423189-03:00",
  "Status": true
}

application/xml, text/xml

Sample:
<PlanoPagarMeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.Model.AppUsuario">
  <Amount>3</Amount>
  <Charges>sample string 7</Charges>
  <DataCadastro xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2026-01-21T14:12:21.1423189Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>-180</d2p1:OffsetMinutes>
  </DataCadastro>
  <Days>4</Days>
  <Id>1</Id>
  <IdPlanoPagarMe>2</IdPlanoPagarMe>
  <Installments>8</Installments>
  <Name>sample string 5</Name>
  <Status>true</Status>
  <TrialDays>6</TrialDays>
</PlanoPagarMeModel>