GET order/{orderid}/payment

Request Information

URI Parameters

NameDescriptionTypeAdditional information
orderid

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of orderpaymentdto
NameDescriptionTypeAdditional information
processby

string

None.

date

string

None.

amount

string

None.

remarks

string

None.

paymenttype

integer

None.

urlcode

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "processby": "sample string 1",
    "date": "sample string 2",
    "amount": "sample string 3",
    "remarks": "sample string 4",
    "paymenttype": 5,
    "urlcode": "sample string 6"
  },
  {
    "processby": "sample string 1",
    "date": "sample string 2",
    "amount": "sample string 3",
    "remarks": "sample string 4",
    "paymenttype": 5,
    "urlcode": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOforderpaymentdto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/palmeo.api.Models.DTO">
  <orderpaymentdto>
    <amount>sample string 3</amount>
    <date>sample string 2</date>
    <paymenttype>5</paymenttype>
    <processby>sample string 1</processby>
    <remarks>sample string 4</remarks>
    <urlcode>sample string 6</urlcode>
  </orderpaymentdto>
  <orderpaymentdto>
    <amount>sample string 3</amount>
    <date>sample string 2</date>
    <paymenttype>5</paymenttype>
    <processby>sample string 1</processby>
    <remarks>sample string 4</remarks>
    <urlcode>sample string 6</urlcode>
  </orderpaymentdto>
</ArrayOforderpaymentdto>