action alertersystem_api_transport_pager_tree_id_get { label: "Retrieves a TransportPagerTree resource." description: "Retrieves a TransportPagerTree resource." provider: alertersystem method: GET path: "/api/transport-pager-tree/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The TransportPagerTree resource is a collection of transports that carry dispatched alerts to the external Pager Tree service." required: ["pagerTreeAccessToken", "pagerTreeUrgency", "partition", "transportName"] properties: { createdAt: { type: "string" format: "date-time" description: "When the resource instance was created. This date-time is in the UTC timezone." } dataSegmentCode: { type: "string" description: "User-provided string on which to segment and filter data. Max 50 characters." } id: { type: "string" format: "uuid" description: "The unique identifier of the resource instance." } pagerTreeAccessToken: { type: "string" description: "The access token for the Pager Tree service. Stored in encrypted format." } pagerTreeAccountUserId: { type: "string" description: "The account user ID for the Pager Tree service. (Must supply either team ID, router ID or account user ID.)" } pagerTreeRouterId: { type: "string" description: "The router ID for the Pager Tree service. (Must supply either team ID, router ID or account user ID.)" } pagerTreeTeamId: { type: "string" description: "The team ID for the Pager Tree service. (Must supply either team ID, router ID or account user ID.)" } pagerTreeUrgency: { type: "string" description: "The urgency for the Pager Tree service." } partition: { type: "string" format: "iri-reference" description: "The partition that contains this resource instance. The resource cannot be moved to another partition." } resourceOwner: { type: "string" description: "The name of the person who owns this resource." } transportName: { type: "string" description: "The name of the transport." } } } }