POST {version}/GetTransactionCategories
Get Transaction Categories
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": [
"732b547e-9aa6-475a-8f74-447f69a0b1da",
"3982bc50-1dfc-44b3-822f-9adbf3d3bcd7"
]
}
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>732b547e-9aa6-475a-8f74-447f69a0b1da</d2p1:guid>
<d2p1:guid>3982bc50-1dfc-44b3-822f-9adbf3d3bcd7</d2p1:guid>
</Ids>
</Query>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of Transaction Categories
Collection of TransactionCategory| Name | 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": "db864779-11c5-4616-a1c1-76b58f3612af",
"tct_GUID": "3c82f198-30d9-40e6-9ae7-26cbe5d4352e",
"Text": "sample string 2",
"InActive": true,
"TransactionType": "sample string 4"
},
{
"GUID": "db864779-11c5-4616-a1c1-76b58f3612af",
"tct_GUID": "3c82f198-30d9-40e6-9ae7-26cbe5d4352e",
"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>db864779-11c5-4616-a1c1-76b58f3612af</GUID>
<InActive>true</InActive>
<Text>sample string 2</Text>
<TransactionType>sample string 4</TransactionType>
<tct_GUID>3c82f198-30d9-40e6-9ae7-26cbe5d4352e</tct_GUID>
</TransactionCategory>
<TransactionCategory>
<GUID>db864779-11c5-4616-a1c1-76b58f3612af</GUID>
<InActive>true</InActive>
<Text>sample string 2</Text>
<TransactionType>sample string 4</TransactionType>
<tct_GUID>3c82f198-30d9-40e6-9ae7-26cbe5d4352e</tct_GUID>
</TransactionCategory>
</ArrayOfTransactionCategory>