Contents

メッセージを削除する

投稿したメッセージを削除します。

メソッド

DELETE

URL

https://typetalk.com/api/v1/topics/:topicId/posts/:postId

スコープ

topic.post

URL パラメーター

名前説明
topicId数値トピック ID
postId数値投稿 ID

レスポンスの例

{
  "id": 333,
  "topicId": 208,
  "replyTo": null,
  "message": "Let's party like it's 1999!",
  "account": {
    "id": 100,
    "name": "jessica",
    "fullName": "Jessica Fitzherbert",
    "suggestion": "Jessica Fitzherbert",
    "imageUrl": "https://typetalk.com/accounts/100/profile_image.png?t=1403577149000",
    "isBot": false,
    "createdAt": "2014-06-24T02:32:29Z",
    "updatedAt": "2014-06-24T02:32:29Z"
  },
  "mention": null,
  "attachments": [],
  "likes": [],
  "talks": [],
  "links": [],
  "createdAt": "2016-12-21T10:11:57Z",
  "updatedAt": "2016-12-21T10:11:57Z"
}

レスポンスのフォーマットは全て JSON です。GET メソッドは ETag に対応しているので、If-None-Match ヘッダを付けて送ると、変更がない場合は 304 を返します。日付のフォーマットは ISO 8601 で、UTC です。 (例 : 2014-01-09T06:20:08Z )