POST {version}/GetTransactionCategories
Get Transaction Categories
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": [ "378640fd-eeb0-4ae0-aa07-f295223daa36", "0f99e3a1-095d-4b79-8481-7c12c8beb4eb" ] }
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>378640fd-eeb0-4ae0-aa07-f295223daa36</d2p1:guid> <d2p1:guid>0f99e3a1-095d-4b79-8481-7c12c8beb4eb</d2p1:guid> </Ids> </Query>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of Transaction Categories
Collection of TransactionCategoryName | Description | Type | Additional information |
---|---|---|---|
GUID | globally unique identifier |
None. |
|
tct_GUID | globally unique identifier |
None. |
|
Text | string |
None. |
|
InActive | boolean |
None. |
|
TransactionType | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "GUID": "6932cd20-e087-4bce-adc8-305b79eafff2", "tct_GUID": "2c477b17-eae2-4d5f-872d-d0d3815f22a7", "Text": "sample string 2", "InActive": true, "TransactionType": "sample string 4" }, { "GUID": "6932cd20-e087-4bce-adc8-305b79eafff2", "tct_GUID": "2c477b17-eae2-4d5f-872d-d0d3815f22a7", "Text": "sample string 2", "InActive": true, "TransactionType": "sample string 4" } ]
application/xml, text/xml
Sample:
<ArrayOfTransactionCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model"> <TransactionCategory> <GUID>6932cd20-e087-4bce-adc8-305b79eafff2</GUID> <InActive>true</InActive> <Text>sample string 2</Text> <TransactionType>sample string 4</TransactionType> <tct_GUID>2c477b17-eae2-4d5f-872d-d0d3815f22a7</tct_GUID> </TransactionCategory> <TransactionCategory> <GUID>6932cd20-e087-4bce-adc8-305b79eafff2</GUID> <InActive>true</InActive> <Text>sample string 2</Text> <TransactionType>sample string 4</TransactionType> <tct_GUID>2c477b17-eae2-4d5f-872d-d0d3815f22a7</tct_GUID> </TransactionCategory> </ArrayOfTransactionCategory>