GET v1/OrderDetails/{id}/{orderId}/ValidPayments?sort={sort}

Get valid payment types for a person, without login.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

orderId

integer

Required

sort

A comma delimited list of columns to sort by. Field are sorted in ascending order by default. To have a field sort in descending order, preface it with the minus (-) sign.

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Collection of GetValidPaymentTypesOutput
NameDescriptionTypeAdditional information
name

string

None.

PaymentType

string

None.

IsRemote

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "name": "sample string 1",
    "PaymentType": "sample string 2",
    "IsRemote": true
  },
  {
    "name": "sample string 1",
    "PaymentType": "sample string 2",
    "IsRemote": true
  }
]

text/html

Sample:
[{"name":"sample string 1","PaymentType":"sample string 2","IsRemote":true},{"name":"sample string 1","PaymentType":"sample string 2","IsRemote":true}]

application/xml, text/xml

Sample:
<ArrayOfv1_MakePaymentWithoutLogin_MakePaymentWithoutLoginEndpointController.GetValidPaymentTypesOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aptify.Services.Generated.v1_MakePaymentWithoutLogin_MakePaymentWithoutLoginEndpoint">
  <v1_MakePaymentWithoutLogin_MakePaymentWithoutLoginEndpointController.GetValidPaymentTypesOutput>
    <IsRemote>true</IsRemote>
    <PaymentType>sample string 2</PaymentType>
    <name>sample string 1</name>
  </v1_MakePaymentWithoutLogin_MakePaymentWithoutLoginEndpointController.GetValidPaymentTypesOutput>
  <v1_MakePaymentWithoutLogin_MakePaymentWithoutLoginEndpointController.GetValidPaymentTypesOutput>
    <IsRemote>true</IsRemote>
    <PaymentType>sample string 2</PaymentType>
    <name>sample string 1</name>
  </v1_MakePaymentWithoutLogin_MakePaymentWithoutLoginEndpointController.GetValidPaymentTypesOutput>
</ArrayOfv1_MakePaymentWithoutLogin_MakePaymentWithoutLoginEndpointController.GetValidPaymentTypesOutput>