GET {version}/GetCheckDetail?transactionId={transactionId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
transactionId | globally unique identifier |
Required |
|
version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
CheckDetailName | Description | Type | Additional information |
---|---|---|---|
CheckStatusId | globally unique identifier |
None. |
|
History | Collection of CheckRequestHistory |
None. |
|
TransactionNotFound | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "CheckStatusId": "333f9fbf-5560-4c11-a7d4-334e051eaa24", "History": [ { "Id": "16e29168-9dbc-4afe-86e6-5ebd8d8b08c9", "CreatedOn": "sample string 2", "UpdatedOn": "sample string 3", "CreatedBy": "sample string 4", "UpdatedBy": "sample string 5", "CheckStatus": "sample string 6" }, { "Id": "16e29168-9dbc-4afe-86e6-5ebd8d8b08c9", "CreatedOn": "sample string 2", "UpdatedOn": "sample string 3", "CreatedBy": "sample string 4", "UpdatedBy": "sample string 5", "CheckStatus": "sample string 6" } ], "TransactionNotFound": true }
application/xml, text/xml
Sample:
<CheckDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model"> <CheckStatusId>333f9fbf-5560-4c11-a7d4-334e051eaa24</CheckStatusId> <History> <CheckRequestHistory> <CheckStatus>sample string 6</CheckStatus> <CreatedBy>sample string 4</CreatedBy> <CreatedOn>sample string 2</CreatedOn> <Id>16e29168-9dbc-4afe-86e6-5ebd8d8b08c9</Id> <UpdatedBy>sample string 5</UpdatedBy> <UpdatedOn>sample string 3</UpdatedOn> </CheckRequestHistory> <CheckRequestHistory> <CheckStatus>sample string 6</CheckStatus> <CreatedBy>sample string 4</CreatedBy> <CreatedOn>sample string 2</CreatedOn> <Id>16e29168-9dbc-4afe-86e6-5ebd8d8b08c9</Id> <UpdatedBy>sample string 5</UpdatedBy> <UpdatedOn>sample string 3</UpdatedOn> </CheckRequestHistory> </History> <TransactionNotFound>true</TransactionNotFound> </CheckDetail>