GET api/PaymentMethods/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

PaymentMethod
NameDescriptionTypeAdditional information
PaymentMethodId

integer

None.

PaymentType

string

Max length: 50

DateCreated

date

None.

DateUpdated

date

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "PaymentMethodId": 1,
  "PaymentType": "sample string 2",
  "DateCreated": "2024-03-28T05:45:54.0119361+00:00",
  "DateUpdated": "2024-03-28T05:45:54.0119361+00:00",
  "CreatedBy": 1,
  "UpdatedBy": 1
}

application/xml, text/xml

Sample:
<PaymentMethod xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APL.Models">
  <CreatedBy>1</CreatedBy>
  <DateCreated>2024-03-28T05:45:54.0119361+00:00</DateCreated>
  <DateUpdated>2024-03-28T05:45:54.0119361+00:00</DateUpdated>
  <PaymentMethodId>1</PaymentMethodId>
  <PaymentType>sample string 2</PaymentType>
  <UpdatedBy>1</UpdatedBy>
</PaymentMethod>