action alertersystem_api_alert_log_id_get { label: "Retrieves a AlertLog resource." description: "Retrieves a AlertLog resource." provider: alertersystem method: GET path: "/api/alert-log/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The AlertLog resource is a chronological record of all the alerts that have been triggered, including the status of each alert." properties: { alertLogErrorMessage: { type: "string" description: "The reason why the dispatch of the alert failed." } alertLogMessageId: { type: "string" description: "The id of the successfully dispatched message as received from the transport that was used." } alertLogStatusCode: { type: "string" format: "iri-reference" description: "The status of the alert log." } alertService: { type: "string" format: "iri-reference" description: "The alert service that is related to this resource." } 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." } monitor: { type: "string" format: "iri-reference" description: "The monitor that is related to this resource instance." } partition: { type: "string" format: "iri-reference" description: "The partition that contains this resource instance. The resource cannot be moved to another partition." } ping: { type: "string" format: "iri-reference" description: "The ping that triggered this resource instance." } resourceOwner: { type: "string" description: "The name of the person who owns this resource." } webhookResponseBody: { type: "string" description: "The response body returned by a successful request to a webhook URL. Length limited to 1,000 characters." } webhookResponseHeaders: { type: "array" description: "The response headers returned by a successful request to a webhook URL." items: { type: "string" } } } } }