Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.74 KB

File metadata and controls

52 lines (36 loc) · 1.74 KB

WebhookLog

Webhook delivery log entry

Properties

Name Type Description Notes
id String [optional]
webhookId String ID of the webhook that was triggered [optional]
webhookName String Name of the webhook that was triggered [optional]
event EventEnum [optional]
url URI [optional]
status StatusEnum [optional]
statusCode Integer HTTP status code from webhook endpoint [optional]
requestPayload Object Payload sent to webhook endpoint [optional]
responseBody String Response body from webhook endpoint (truncated to 10KB) [optional]
errorMessage String Error message if delivery failed [optional]
attemptNumber Integer Delivery attempt number (max 3 retries) [optional]
responseTime Integer Response time in milliseconds [optional]
createdAt OffsetDateTime [optional]

Enum: EventEnum

Name Value
POST_SCHEDULED "post.scheduled"
POST_PUBLISHED "post.published"
POST_FAILED "post.failed"
POST_PARTIAL "post.partial"
POST_RECYCLED "post.recycled"
ACCOUNT_CONNECTED "account.connected"
ACCOUNT_DISCONNECTED "account.disconnected"
MESSAGE_RECEIVED "message.received"
COMMENT_RECEIVED "comment.received"
WEBHOOK_TEST "webhook.test"

Enum: StatusEnum

Name Value
SUCCESS "success"
FAILED "failed"