POST api/savedata/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
responseToSend| Name | Description | Type | Additional information |
|---|---|---|---|
| err | integer |
None. |
|
| do | Collection of Do |
None. |
Response Formats
application/json, text/json
Sample:
{
"err": 1,
"do": [
{
"act": "sample string 1"
},
{
"act": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<responseToSend xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RCServices.Classes">
<do>
<Do>
<act>sample string 1</act>
</Do>
<Do>
<act>sample string 1</act>
</Do>
</do>
<err>1</err>
</responseToSend>