メインコンテンツまでスキップ

UpdateItemComment

コメント更新

Description

アイテムのコメントを更新します。

(注意)

  • 自分の投稿したコメントを更新できます
  • アプリケーションadminロール保持者は全てのコメントを更新できます
  • 現状、更新後のサーバからの通知イベントはありません。

Method

PUT

Request URL Format

/api/v0/applications/:app-id/datastores/:datastore-id/items/histories/:item-id/:history-id

URL Params

  app-id: アプリケーションID(画面ID、または、システム内部ID p_id)
datastore-id: データベースID(画面ID、または、システム内部ID d_id)
item-id: コメント登録する対象Itemのitem_id
history-id: 履歴ID

Payload

{
"comment" : 更新したいコメント
}

Request URL Sample

PUT https://api.xxx.com/api/v0/applications/AppName/datastores/DatabaseID/items/histories/5f38a121aa395581685afdc4/5fe370eb28dc5c41e836d4db
{
"comment" : "update text..."
}

Response Sample

成功

null

権限がない場合、は403

{
"error": "no privileges to update history"
}