action alertersystem_api_transport_sms_factor_id_get { label: "Retrieves a TransportSmsFactor resource." description: "Retrieves a TransportSmsFactor resource." provider: alertersystem method: GET path: "/api/transport-sms-factor/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The TransportSmsFactor resource is a collection of transports that carry dispatched alerts to the external SMSFactor service." required: ["partition", "smsFactorPushType", "smsFactorSender", "smsFactorToken", "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." } 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." } smsFactorPushType: { type: "string" description: "The push type for the SMSFactor service." } smsFactorSender: { type: "string" description: "The sender value for the SMSFactor service." } smsFactorToken: { type: "string" description: "The token for the SMSFactor service. Stored in encrypted format." } transportName: { type: "string" description: "The name of the transport." } } } }