POST {version}/GetTransactionCategoryTypes
Get Transaction Category Types
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": [
"6c1b4cf7-a025-4d69-9585-94b8f7c2bfc0",
"6d38a1c7-d2a8-4be3-b359-a98f0aa73e6e"
]
}
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>6c1b4cf7-a025-4d69-9585-94b8f7c2bfc0</d2p1:guid>
<d2p1:guid>6d38a1c7-d2a8-4be3-b359-a98f0aa73e6e</d2p1:guid>
</Ids>
</Query>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of Transaction Category Types
Collection of TransactionCategoryType| Name | Description | Type | Additional information |
|---|---|---|---|
| GUID | globally unique identifier |
None. |
|
| Text | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"GUID": "27f9e949-726b-4191-8afd-a6a157c402b8",
"Text": "sample string 2"
},
{
"GUID": "27f9e949-726b-4191-8afd-a6a157c402b8",
"Text": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfTransactionCategoryType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model">
<TransactionCategoryType>
<GUID>27f9e949-726b-4191-8afd-a6a157c402b8</GUID>
<Text>sample string 2</Text>
</TransactionCategoryType>
<TransactionCategoryType>
<GUID>27f9e949-726b-4191-8afd-a6a157c402b8</GUID>
<Text>sample string 2</Text>
</TransactionCategoryType>
</ArrayOfTransactionCategoryType>