Webhooks
Grant API
Notification kinds
The notification kind, returned by calling kind on the notification object, reveals what triggered the webhook. The webhook_notification.kind for Grant API webhooks will be one of the following:
Braintree::WebhookNotification::Kind::GrantorUpdatedGrantedPaymentMethod
Braintree::WebhookNotification::Kind::RecipientUpdatedGrantedPaymentMethod
Braintree::WebhookNotification::Kind::GrantedPaymentMethodRevoked
The following table describes the conditions that trigger each kind of webhook.
Notification Type | Description |
---|---|
granted_payment_instrument_update |
A payment instrument that was previously granted to another Braintree merchant has been updated. The |
granted_payment_instrument_revoked |
A payment instrument that was previously granted has been revoked by the grantor. |
Attributes
kind
enumThe kind of webhook notification.
timestamp
dateThe UTC time at which the webhook was triggered.
revoked_payment_method_metadata
Only present for granted payment instrument revoked webhooks.
token
stringAn alphanumeric value that references a specific payment method stored in your Vault.
customer_id
stringA value representing an existing customer's payment method stored in your Vault. Use Customer: Find
call to look up a single customer.
revoked_payment_method
The PaymentMethod
object associated with the revoked granted payment method.
granted_payment_instrument_update
Only present for granted payment instrument updated webhooks.
grant_owner_merchant_id
stringThe merchant ID of the Braintree merchant that owns the payment instrument.
grant_recipient_merchant_id
stringThe merchant ID of the Braintree merchant that was granted the payment instrument.
payment_method_nonce
objectAn object containing the payment method nonce, which represents the updated payment instrument.
nonce
stringA payment method nonce representing the updated payment instrument.
consumed
booleanA value that indicates if the payment method nonce has been used.
updated_fields
ArrayAn array of strings denoting all of the fields of the payment instrument that were updated.
See the Grant API webhooks guide for additional attributes specific to each webhook kind.