action alertersystem_api_timezone_code_get_collection { label: "Retrieves the collection of TimezoneCode resources." description: "Retrieves the collection of TimezoneCode resources." provider: alertersystem method: GET path: "/api/timezone-code" encoding: json input: { type: "object" properties: { page: { type: "integer" } "properties[]": { type: "array" items: { type: "string" } } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "The TimezoneCode resource is a set of codes that describes the different international timezones." properties: { codeName: { type: "string" description: "The name of the code." } id: { type: "string" description: "The unique identifier of the resource instance." } offsetFromUtc: { type: "number" description: "The numeric offset from the UTC timezone." } timezoneDateString: { type: "string" description: "The text offset from the UTC timezone that forms part of the ISO 8601 date time format." } } } } }