PUT api/SendDeviceID?messageID={messageID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
messageID

string

Required

Body Parameters

TestData
NameDescriptionTypeAdditional information
APIKey

string

None.

testMessage

string

None.

receivedTime

date

None.

Request Formats

application/json, text/json

Sample:
{
  "APIKey": "sample string 1",
  "testMessage": "sample string 2",
  "receivedTime": "2024-10-22T06:40:01.6929466-04:00"
}

application/xml, text/xml

Sample:
<Test.TestData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProCADMobileService.Models">
  <APIKey>sample string 1</APIKey>
  <receivedTime>2024-10-22T06:40:01.6929466-04:00</receivedTime>
  <testMessage>sample string 2</testMessage>
</Test.TestData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

TestReturn
NameDescriptionTypeAdditional information
status

boolean

None.

message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<Test.TestReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProCADMobileService.Models">
  <message>sample string 2</message>
  <status>true</status>
</Test.TestReturn>