action alertersystem_api_transport_click_send_id_get { label: "Retrieves a TransportClickSend resource." description: "Retrieves a TransportClickSend resource." provider: alertersystem method: GET path: "/api/transport-click-send/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The TransportClickSend resource is a collection of transports that carry dispatched alerts to the external ClickSend service." required: ["clickSendApiKey", "clickSendApiUsername", "partition", "transportName"] properties: { clickSendApiKey: { type: "string" description: "The API key for the ClickSend service. Stored in encrypted format." } clickSendApiUsername: { type: "string" description: "The API username for the ClickSend service." } clickSendFrom: { type: "string" description: "The from value for the ClickSend service." } clickSendFromEmail: { type: "string" format: "email" description: "The from email value where replies must be emailed for the ClickSend service." } clickSendListId: { type: "string" description: "The recipient list ID value for the ClickSend service." } clickSendSource: { type: "string" description: "The source method of sending value for the ClickSend service." } 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." } 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." } } } }