メディアのメタデータの更新

メディアのメタデータを更新します。

POST /api/1/videos/{media_id}/info

Parametres

  • output_type
    • Response 形式
      • x : XML 形式で出力
      • 指定無し : JSON 形式で出力
  • caption
    • キャプション
  • description
    • ディスクリプション
  • tags
    • タグ

Response

  • status

    • 処理結果
      success : 成功
      それ以外 : 失敗
  • caption

    • 登録されたキャプション
  • description

    • 登録されたディスクリプション
  • tags

    • 登録されたタグ

Response Example - JSON

{
  "status":"success",
  "caption":"test caption",
  "description":"description test",
  "tags":[
    "tag test1",
    "tag test2",
  ]
}

Response Example - XML

<?xml version="1.0" encoding="UTF-8"?>
<response>
<status>success</status>
<caption>test caption</caption>
<description>description test</description>
<tags>
  <entry>tag test1</entry>
  <entry>tag test2</entry>
</tags>
</response>