action alertersystem_api_timezone_code_id_get { label: "Retrieves a TimezoneCode resource." description: "Retrieves a TimezoneCode resource." provider: alertersystem method: GET path: "/api/timezone-code/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { 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." } } } }