POST check/{siteId}/{checkId}/message

Request Information

URI Parameters

NameDescriptionTypeAdditional information
siteId

integer

Required

checkId

integer

Required

Body Parameters

CustomMessage
NameDescriptionTypeAdditional information
Message

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1"
}

application/xml, text/xml

Sample:
<CustomMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pay.Platform.Models">
  <Message>sample string 1</Message>
</CustomMessage>

Response Information

Resource Description

CloudConnectResponse
NameDescriptionTypeAdditional information
message

string

None.

developerMessage

string

None.

code

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "message": "sample string 1",
  "developerMessage": "sample string 2",
  "code": 3
}

application/xml, text/xml

Sample:
<CloudConnectResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pay.Platform.CloudConnect.Models">
  <code>3</code>
  <developerMessage>sample string 2</developerMessage>
  <message>sample string 1</message>
</CloudConnectResponse>