curator/tags.info

Retrieves information associated with a tag in your Curator Media Unit

URL

GET /v1.0/curator/tags.list

Parameters

Argument Required Default Value Example Description
tag_id Required - 12345678912345 ID of the tag.

Responses

{
    "ok": true,
    "tag": {
        "id": "9012345",
        "name": "Hanami",
        "created_at": "2015-11-10T20:09:31+00:00",
        "updated_at": "2015-12-25T18:58:10+00:00"
    }
}

If successful, the method returns a “curator tag” object that meets the specified criteria. For more details, please refer to the “curator tag” object section.

Errors

Error Code Description
no_tag_id Value for "tag_id" is not specified.
invalid_tag_id Value passed for “tag_id" is invalid.
tag_not_found The tag cannot be found.

For other error codes, please refer to the Common Errors section of this document.