action alertersystem_api_transport_mercure_id_get { label: "Retrieves a TransportMercure resource." description: "Retrieves a TransportMercure resource." provider: alertersystem method: GET path: "/api/transport-mercure/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The TransportMercure resource is a collection of transports that carry dispatched alerts to the external Mercure service." required: ["mercureHubJwtToken", "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." } mercureHubJwtToken: { type: "string" description: "The JWT token for the hub for the Mercure service. Stored in encrypted format." } mercureHubUrl: { type: "string" format: "uri" description: "The URL for the hub for the Mercure service." } mercureTopic: { type: "string" description: "The optional topic for the Mercure 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." } } } }