POST {version}/GetTransactionPaymentMethods
Get Payment Methods
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
version | string |
None. |
Body Parameters
QueryName | Description | Type | Additional information |
---|---|---|---|
ActiveOnly | boolean |
None. |
|
Ids | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "ActiveOnly": true, "Ids": [ "69ae3a5f-8a1a-4f46-8893-1ff644a65915", "6bbee0b5-ed96-454d-8a3f-f3d1fb41ffa3" ] }
application/xml, text/xml
Sample:
<Query xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model"> <ActiveOnly>true</ActiveOnly> <Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>69ae3a5f-8a1a-4f46-8893-1ff644a65915</d2p1:guid> <d2p1:guid>6bbee0b5-ed96-454d-8a3f-f3d1fb41ffa3</d2p1:guid> </Ids> </Query>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of Payment Methods
Collection of PaymentMethodName | Description | Type | Additional information |
---|---|---|---|
GUID | globally unique identifier |
None. |
|
Text | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "GUID": "8002f48e-15c2-42e8-a4f5-31d0fd90907b", "Text": "sample string 2" }, { "GUID": "8002f48e-15c2-42e8-a4f5-31d0fd90907b", "Text": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfPaymentMethod xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model"> <PaymentMethod> <GUID>8002f48e-15c2-42e8-a4f5-31d0fd90907b</GUID> <Text>sample string 2</Text> </PaymentMethod> <PaymentMethod> <GUID>8002f48e-15c2-42e8-a4f5-31d0fd90907b</GUID> <Text>sample string 2</Text> </PaymentMethod> </ArrayOfPaymentMethod>