action payrun_get_all_user_tags { label: "Get all user tags" description: "Get all tags from all users" provider: payrun method: GET path: "/Users/Tags" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } } required: ["Api-Version", "Authorization"] additionalProperties: false } output: { type: "object" properties: { LinkCollection: { type: "object" properties: { Links: { type: "object" description: "The link collections' links" properties: { Link: { type: "array" items: { properties: { "@href": { type: "string" description: "The links' href" } "@rel": { type: "string" description: "The links' target type" } "@title": { type: "string" description: "The links' title" } } } } } } } } } } }