action alertersystem_api_transport_esendex_id_get { label: "Retrieves a TransportEsendex resource." description: "Retrieves a TransportEsendex resource." provider: alertersystem method: GET path: "/api/transport-esendex/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The TransportEsendex resource is a collection of transports that carry dispatched alerts to the external Esendex service." required: ["esendexAccountReference", "esendexFrom", "esendexPassword", "esendexUsername", "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." } esendexAccountReference: { type: "string" description: "The account reference that the message should be sent from for the Esendex service." } esendexFrom: { type: "string" description: "The alphanumeric originator for the message to appear to originate from for the Esendex service." } esendexPassword: { type: "string" description: "The API password for the Esendex service. Stored in encrypted format." } esendexUsername: { type: "string" description: "The account email for the Esendex service." } id: { type: "string" format: "uuid" description: "The unique identifier of the resource instance." } 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." } } } }