action alertersystem_api_transport_infobip_id_get { label: "Retrieves a TransportInfobip resource." description: "Retrieves a TransportInfobip resource." provider: alertersystem method: GET path: "/api/transport-infobip/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The TransportInfobip resource is a collection of transports that carry dispatched alerts to the external Infobip service." required: ["infobipAuthToken", "infobipFrom", "infobipHost", "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." } infobipAuthToken: { type: "string" description: "The auth token for the Infobip service. Stored in encrypted format." } infobipFrom: { type: "string" description: "The sender value for the Infobip service." } infobipHost: { type: "string" description: "The host for the Infobip 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." } } } }