GET {version}/GetTransactionTypes
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of TransactionType| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IsMonetary | boolean |
None. |
|
| Text | string |
None. |
|
| IsReceiptType | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "22ffef5d-1468-4a50-a8f3-1e830af5bac8",
"IsMonetary": true,
"Text": "sample string 3",
"IsReceiptType": true
},
{
"Id": "22ffef5d-1468-4a50-a8f3-1e830af5bac8",
"IsMonetary": true,
"Text": "sample string 3",
"IsReceiptType": true
}
]
application/xml, text/xml
Sample:
<ArrayOfTransactionType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model">
<TransactionType>
<Id>22ffef5d-1468-4a50-a8f3-1e830af5bac8</Id>
<IsMonetary>true</IsMonetary>
<IsReceiptType>true</IsReceiptType>
<Text>sample string 3</Text>
</TransactionType>
<TransactionType>
<Id>22ffef5d-1468-4a50-a8f3-1e830af5bac8</Id>
<IsMonetary>true</IsMonetary>
<IsReceiptType>true</IsReceiptType>
<Text>sample string 3</Text>
</TransactionType>
</ArrayOfTransactionType>