PUT api/Test?messageID={messageID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
messageID | string |
Required |
Body Parameters
TestDataName | 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": "2024-11-21T05:05:29.8445381-05: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-11-21T05:05:29.8445381-05:00</receivedTime> <testMessage>sample string 2</testMessage> </Test.TestData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
TestReturnName | 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>