POST {version}/GetTransactionReceiptCodes
Get Receipt Codes
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
Query| Name | Description | Type | Additional information |
|---|---|---|---|
| ActiveOnly | boolean |
None. |
|
| Ids | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"ActiveOnly": true,
"Ids": [
"4e36df0b-9919-4ce3-804a-e15da5c9409e",
"5bcda913-174a-4536-b4ea-c881c03ebbb9"
]
}
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>4e36df0b-9919-4ce3-804a-e15da5c9409e</d2p1:guid>
<d2p1:guid>5bcda913-174a-4536-b4ea-c881c03ebbb9</d2p1:guid>
</Ids>
</Query>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of Receipt Codes
Collection of ReceiptCode| Name | 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": "91ec1c77-c84e-4296-842c-97c212629cf9",
"cau_GUID": "85a365b0-0715-4174-8180-a23993bdfa22",
"Code": "sample string 2",
"Text": "sample string 3"
},
{
"GUID": "91ec1c77-c84e-4296-842c-97c212629cf9",
"cau_GUID": "85a365b0-0715-4174-8180-a23993bdfa22",
"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>91ec1c77-c84e-4296-842c-97c212629cf9</GUID>
<Text>sample string 3</Text>
<cau_GUID>85a365b0-0715-4174-8180-a23993bdfa22</cau_GUID>
</ReceiptCode>
<ReceiptCode>
<Code>sample string 2</Code>
<GUID>91ec1c77-c84e-4296-842c-97c212629cf9</GUID>
<Text>sample string 3</Text>
<cau_GUID>85a365b0-0715-4174-8180-a23993bdfa22</cau_GUID>
</ReceiptCode>
</ArrayOfReceiptCode>