Webhook Entity🔗
The Webhook entity consists of the following fields. You can find the JSON sample entity on the right side.
id
string
The unique identifier of the created webhook. For example,HK890egfiItP3H
. This id is used to fetch, update or delete a webhook. The maximum length is 14 characters.created_at
optionalinteger
The Unix timestamp at which the webhook has been created.updated_at
optionalinteger
The Unix timestamp at which the webhook has been updated.owner_id
mandatorystring
The unique identifier generated by Razorpay for the sub-merchant who will receive the webhooks. For example, in this case, it will beaccount_id
passed in the API URL.owner_type
mandatorystring
Indicates the type of owner. For example, in this case, it will be the merchant.url
string
The URL where you receive the webhook payload when an event is triggered. The maximum length is 255 characters.secret
string
A secret for the webhook endpoint used to validate that the webhook is from Razorpay. Ifalert_email
string
This is the email address to which notifications must be sent in case of webhook failure.secret_exists
mandatoryboolean
This attribute is set totrue
if a secret password has been set for the webhook endpoint. If no secret is sent in the request, this parameter does not appear in the response code.entity
mandatorystring
Indicates the type of entity. For example, in this case, it will be webhook.active
optionalstring
Indicates the status of webhook.true
: Webhook in an activated state.false
: Webhook in a deactivated state.
events
object
The required events from the list of Active Events. For example,payment.authorized
,payment.captured
,payment.failed
,payment.dispute.created
,refund.failed
,refund.created
and so on.