-
Notifications
You must be signed in to change notification settings - Fork 9
Data api comments update
Yuji Takayama edited this page Jul 10, 2013
·
1 revision
Update a comment.
Authorization is required.
This method accepts PUT and POST with __method=PUT.
PUT https://your-host/your-mt-api.cgi/v1/sites/{blog_id}/comments/{comment_id}
| Parameter | Type | Description |
|---|---|---|
| blog_id | unsigned integer | The blog ID. |
| comment_id | unsigned integer | The comment ID. |
Not available.
| Parameter | Type | Description |
|---|---|---|
| __method | string | This is not required but if request method is 'POST', should be set as 'PUT' |
| comment | Comments (JSON) | An Comments resource for update. |
If successful, this method will return an Comments resource as the response body.
| Code | Description |
|---|---|
| 200 | no error |
| 403 | Do not have permission to retrieve the requested entry. |
| 404 | Entry (or site) not found |
| 405 | Request method is not 'PUT' or 'POST' with '__method=PUT' |