action rebilly_get_tag_collection { label: "Retrieve a list of tags" description: "Retrieve a list of tags.\n" provider: rebilly method: GET path: "/tags" encoding: json output: { type: "array" items: { type: "object" description: "Tag." required: ["name"] properties: { _links: { type: "array" description: "The links related to resource." items: { type: "object" } } createdTime: { description: "The tag's created time." type: "object" } id: { description: "The tag's identifier string." type: "object" } name: { type: "string" description: "The tag is unique name, which is case-insensitive." } updatedTime: { description: "The tag's updated time." type: "object" } } } } }