PUT api/reminders/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
UpdateBody| Name | Description | Type | Additional information |
|---|---|---|---|
| title | string |
None. |
|
| note | string |
None. |
|
| dueAt | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"title": "sample string 1",
"note": "sample string 2",
"dueAt": "sample string 3"
}
application/xml, text/xml
Sample:
<RemindersController.UpdateBody xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TM_API_Service.Controllers"> <dueAt>sample string 3</dueAt> <note>sample string 2</note> <title>sample string 1</title> </RemindersController.UpdateBody>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |