トピックコメント削除
| パラメータ | 値 | 説明 |
|---|---|---|
| id *必須 | integer | コメントのIDを指定します。 |
| フィールド名 | 説明 |
|---|---|
| id | コメントID |
| member | 投稿したメンバーの情報(詳しくは レスポンスの共通仕様 を参照) |
| body | 投稿したトピックの本文 |
| created_at | 投稿時間 |
| deletable | コメントを削除可能かどうかのフラグ |
$ curl -XPOST -d 'apiKey=cdc4042edf74db746f5bf550039bf50979da2566aa514fc0aac8f57c56398be5&id=3' http://example.com/api.php/topic_comment/delete.json
{
"status":"success",
"data":{
"id":"3",
"body":"aaaaaaaaaa",
"member":{
"id":"1",
"profile_image":"http:\/\/example.com\/web\/images\/no_image.gif",
"screen_name":"OpenPNE\u541b",
"name":"OpenPNE\u541b",
"profile_url":"\/member\/1",
"friend":false,
"blocking":false,
"self":true,
"friends_count":0,
"self_introduction":null
},
"created_at":"2012-09-30 10:00:15",
"deletable":false
}
}