POST cardapp/V4/Log
Documentation for 'Log'.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| request | Documentation for 'request'. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"Type": 1,
"LogData": "sample string 2",
"Language": 3
}
application/xml, text/xml
Sample:
<LogRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BasicModel.Third.CardAppV4"> <Language xmlns="http://schemas.datacontract.org/2004/07/CardAppIoTCommon.Model.Base">3</Language> <LogData>sample string 2</LogData> <Type>1</Type> </LogRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{
"ResultType": 1,
"ResultMessage": "sample string 2",
"Code": 3,
"Message": "sample string 4"
}
application/xml, text/xml
Sample:
<BaseCardAppApiResponseResultType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CardAppIoTCommon.Model.Base"> <Code>3</Code> <Message>sample string 4</Message> <ResultMessage>sample string 2</ResultMessage> <ResultType>1</ResultType> </BaseCardAppApiResponseResultType>