action alertersystem_api_transport_pager_duty_id_get { label: "Retrieves a TransportPagerDuty resource." description: "Retrieves a TransportPagerDuty resource." provider: alertersystem method: GET path: "/api/transport-pager-duty/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The TransportPagerDuty resource is a collection of transports that carry dispatched alerts to the external Pager Duty service." required: ["pagerDutyApiToken", "pagerDutyEventAction", "pagerDutyRoutingKey", "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." } pagerDutyApiToken: { type: "string" description: "The API token for the Pager Duty service. Stored in encrypted format." } pagerDutyDedupKey: { type: "string" description: "The dedup key for the Pager Duty service." } pagerDutyEventAction: { type: "string" description: "The event action for the Pager Duty service." } pagerDutyPayloadClass: { type: "string" description: "The payload class for the Pager Duty service." } pagerDutyPayloadComponent: { type: "string" description: "The payload component for the Pager Duty service." } pagerDutyPayloadGroup: { type: "string" description: "The payload group for the Pager Duty service." } pagerDutyPayloadSeverity: { type: "string" description: "The payload severity for the Pager Duty service." } pagerDutyPayloadSource: { type: "string" description: "The payload source for the Pager Duty service." } pagerDutyRoutingKey: { type: "string" description: "The routing key for the Pager Duty 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." } } } }