POST {version}/GetTransactionReceiptCodes
Get Receipt Codes
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": [ "4971489b-0ced-4c2b-8d92-e3d422475d40", "b4e05063-e8d5-4971-935f-94ee021d91db" ] }
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>4971489b-0ced-4c2b-8d92-e3d422475d40</d2p1:guid> <d2p1:guid>b4e05063-e8d5-4971-935f-94ee021d91db</d2p1:guid> </Ids> </Query>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of Receipt Codes
Collection of ReceiptCodeName | Description | Type | Additional information |
---|---|---|---|
GUID | globally unique identifier |
None. |
|
cau_GUID | globally unique identifier |
None. |
|
Code | string |
None. |
|
Text | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "GUID": "7904be0b-8d5c-4681-8c61-dfdf681c6971", "cau_GUID": "2ada2a12-507c-4900-9000-2847bbb7981a", "Code": "sample string 2", "Text": "sample string 3" }, { "GUID": "7904be0b-8d5c-4681-8c61-dfdf681c6971", "cau_GUID": "2ada2a12-507c-4900-9000-2847bbb7981a", "Code": "sample string 2", "Text": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfReceiptCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model"> <ReceiptCode> <Code>sample string 2</Code> <GUID>7904be0b-8d5c-4681-8c61-dfdf681c6971</GUID> <Text>sample string 3</Text> <cau_GUID>2ada2a12-507c-4900-9000-2847bbb7981a</cau_GUID> </ReceiptCode> <ReceiptCode> <Code>sample string 2</Code> <GUID>7904be0b-8d5c-4681-8c61-dfdf681c6971</GUID> <Text>sample string 3</Text> <cau_GUID>2ada2a12-507c-4900-9000-2847bbb7981a</cau_GUID> </ReceiptCode> </ArrayOfReceiptCode>