POST api/CommandController/LogCommandResponse
Request Information
URI Parameters
None.
Body Parameters
CommandResponseName | Description | Type | Additional information |
---|---|---|---|
logger | string |
None. |
|
token | string |
None. |
|
hash | string |
None. |
|
CommandID | integer |
None. |
|
ResponseText | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "logger": "sample string 1", "token": "sample string 2", "hash": "sample string 3", "CommandID": 4, "ResponseText": "sample string 5" }
application/xml, text/xml
Sample:
<CommandResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TransactionDatabaseConnector"> <CommandID>4</CommandID> <ResponseText>sample string 5</ResponseText> <hash>sample string 3</hash> <logger>sample string 1</logger> <token>sample string 2</token> </CommandResponse>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>