POST {version}/GetTransactionDisbursementCodes
Get Disbursement Codes
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": [ "6cdf55e8-4cb7-4e79-80cf-3d134cc6df6b", "cee64ba0-9033-4663-a129-a920cb6042ba" ] }
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>6cdf55e8-4cb7-4e79-80cf-3d134cc6df6b</d2p1:guid> <d2p1:guid>cee64ba0-9033-4663-a129-a920cb6042ba</d2p1:guid> </Ids> </Query>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of Disbursement Codes
Collection of DisbursementCodeName | Description | Type | Additional information |
---|---|---|---|
GUID | globally unique identifier |
None. |
|
cau_GUID | globally unique identifier |
None. |
|
Code | string |
None. |
|
Text | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "GUID": "392ed7e3-ad14-4c21-add0-e9bd46e1cbf0", "cau_GUID": "3682c931-6dcf-4877-9f8e-b9737931a513", "Code": "sample string 2", "Text": "sample string 3" }, { "GUID": "392ed7e3-ad14-4c21-add0-e9bd46e1cbf0", "cau_GUID": "3682c931-6dcf-4877-9f8e-b9737931a513", "Code": "sample string 2", "Text": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfDisbursementCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model"> <DisbursementCode> <Code>sample string 2</Code> <GUID>392ed7e3-ad14-4c21-add0-e9bd46e1cbf0</GUID> <Text>sample string 3</Text> <cau_GUID>3682c931-6dcf-4877-9f8e-b9737931a513</cau_GUID> </DisbursementCode> <DisbursementCode> <Code>sample string 2</Code> <GUID>392ed7e3-ad14-4c21-add0-e9bd46e1cbf0</GUID> <Text>sample string 3</Text> <cau_GUID>3682c931-6dcf-4877-9f8e-b9737931a513</cau_GUID> </DisbursementCode> </ArrayOfDisbursementCode>