SubscriptionStatus
Current status of the subscription, including details on the last successful and failed attempts, and retry information.
Properties
status
(string): Status isdisabled
when the event subscription was created withenabled
set to false and it never started publishing events. Status isactive
when the event subscription is functioning normally and a 200 OK response was received for the callback notification. Status isfailed
when a bad callback URL, connection failures, or1xx
or3xx
response was received for the callback notification. Status isawaitingRetry
when the previous attempt at callback timed out or received a4xx
or5xx
response. Status isretryLimitReached
after all retries fail. Must be one of:["disabled", "failed", "retryLimitReached", "awaitingRetry", "active"]
.lastSuccessfulAt
: Timestamp of the last successful callback in UNIX UTC epoch time in milliseconds. Refer to ../type/basic.json#/definitions/timestamp.lastFailedAt
: Timestamp of the last failed callback in UNIX UTC epoch time in milliseconds. Refer to ../type/basic.json#/definitions/timestamp.lastFailedStatusCode
(integer): HTTP status code received during the last failed callback attempt.lastFailedReason
(string): Detailed reason for the last failure received during callback.nextAttempt
: Timestamp for the next retry attempt in UNIX epoch time in milliseconds. Only valid ifstatus
isawaitingRetry
. Refer to ../type/basic.json#/definitions/timestamp.timestamp
: Current timestamp of this status in UNIX epoch time in milliseconds. Refer to ../type/basic.json#/definitions/timestamp.
Documentation file automatically generated at 2025-01-15 09:05:25.266839+00:00.