Webhooks
Get webhooks
Use this action to get webhooks. You must add a credit card to your Daily account to use this action. Learn more in Daily’s documentation
🔐 Bundle plugin only: This is exclusive to the Video, Audio & Live Bundle. Get the bundle plugin here.
Fields
This action takes no fields
Returned Values
This action returns an array of webhook objects. Each object in the array contains the following fields:
Field | Type | Description |
---|---|---|
uuid | Text | The unique identifier for this webhook. |
url | Text | The webhook server endpoint that was provided. |
hmac | Text | A secret that can be used to verify the signature of the webhook. |
basicAuth | Text | The basic auth credentials that will be used to POST to the webhook URL. |
retryType | Text | The retry configuration for this webhook endpoint. |
eventTypes | Array | The set of event types this webhook is subscribed to. |
state | Text | The current state of the webhook. Options: "FAILED" , "INACTIVE" . |
failedCount | Number | The number of consecutive failures this webhook has made. |
lastMomentPushed | Text | The ISO 8601 time of the last moment an event was pushed to the webhook server. |
domainId | Text | The domain ID this webhook is associated with. |
createdAt | Text | The ISO 8601 time of when this webhook was created. |
updatedAt | Text | The ISO 8601 time of when this webhook was last updated. |
error.status_code | Number | The HTTP status code returned by the API (e.g., 200 for success). |
error.status_message | Text | The HTTP status message returned by the API (e.g., "OK" ). |
error.body | Text | The raw error body message as a string. |
returned_an_error | Boolean | A flag indicating whether the API returned an error. false means no error occurred. |