Update of media metadata

This API updates the metadata of the media.

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

Parametres

  • output_type
    • Response Type
      • x: Output in XML format
      • blank: Output in JSON format
  • caption
    • caption
  • description
    • description
  • tags
    • tag

Response

  • status

    • Result of Process
      success: sucess
      other: failure
  • caption

    • updated caption
  • description

    • updated description
  • tags

    • updated 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>