action alertersystem_api_transport_email_id_get { label: "Retrieves a TransportEmail resource." description: "Retrieves a TransportEmail resource." provider: alertersystem method: GET path: "/api/transport-email/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The TransportEmail resource is a collection of transports that carry dispatched alerts to external SMTP email services." required: ["emailFromAddress", "emailFromName", "emailPassword", "emailPort", "emailServer", "emailUsername", "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." } emailFromAddress: { type: "string" format: "email" description: "The sender email address for the SMTP Email service." } emailFromName: { type: "string" description: "The sender name for the SMTP Email service." } emailPassword: { type: "string" description: "The password for the SMTP Email service. Stored in encrypted format." } emailPort: { type: "integer" description: "The port for the SMTP Email service." } emailServer: { type: "string" description: "The server for the SMTP Email service." } emailUsername: { type: "string" description: "The username for the SMTP Email 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." } } } }