GET {version}/GetTransactionTypes
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of TransactionTypeName | 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": "a770500b-8006-4ded-a1ed-2739ab87b68f", "IsMonetary": true, "Text": "sample string 3", "IsReceiptType": true }, { "Id": "a770500b-8006-4ded-a1ed-2739ab87b68f", "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>a770500b-8006-4ded-a1ed-2739ab87b68f</Id> <IsMonetary>true</IsMonetary> <IsReceiptType>true</IsReceiptType> <Text>sample string 3</Text> </TransactionType> <TransactionType> <Id>a770500b-8006-4ded-a1ed-2739ab87b68f</Id> <IsMonetary>true</IsMonetary> <IsReceiptType>true</IsReceiptType> <Text>sample string 3</Text> </TransactionType> </ArrayOfTransactionType>