POST {version}/GetTransactionCategoryTypes
Get Transaction Category Types
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": [ "78fc31f2-f302-4f90-85d9-2d1554bd40c0", "0d01c7cf-eb2e-499c-b289-7b8f8f362c8d" ] }
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>78fc31f2-f302-4f90-85d9-2d1554bd40c0</d2p1:guid> <d2p1:guid>0d01c7cf-eb2e-499c-b289-7b8f8f362c8d</d2p1:guid> </Ids> </Query>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of Transaction Category Types
Collection of TransactionCategoryTypeName | Description | Type | Additional information |
---|---|---|---|
GUID | globally unique identifier |
None. |
|
Text | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "GUID": "b7df6f6d-fd35-4d41-b87b-2883059e549b", "Text": "sample string 2" }, { "GUID": "b7df6f6d-fd35-4d41-b87b-2883059e549b", "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>b7df6f6d-fd35-4d41-b87b-2883059e549b</GUID> <Text>sample string 2</Text> </TransactionCategoryType> <TransactionCategoryType> <GUID>b7df6f6d-fd35-4d41-b87b-2883059e549b</GUID> <Text>sample string 2</Text> </TransactionCategoryType> </ArrayOfTransactionCategoryType>