PUT api/Test?messageID={messageID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| messageID | string |
Required |
Body Parameters
TestData| Name | Description | Type | Additional 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": "2025-11-04T01:25:37.3288368+00: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>2025-11-04T01:25:37.3288368+00:00</receivedTime> <testMessage>sample string 2</testMessage> </Test.TestData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
TestReturn| Name | Description | Type | Additional 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>