Skip to main content
GET
/
webhooks
/
registrations
/
{registrationId}
Fetch a single webhook registration
curl --request GET \
  --url https://sandbox.trybraid.xyz/webhooks/registrations/{registrationId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "1e9b4d42-0e0d-4a0e-9c55-3d6a1df3b9c1",
  "url": "https://api.partner.com/webhooks/braid",
  "status": "active",
  "eventTypes": [
    "portfolio_wallet.balance.updated",
    "portfolio_wallet.deposit.status_changed"
  ],
  "description": "Alerts our ledger service when balances change",
  "createdAt": "2026-02-08T18:04:10.123Z",
  "disabledAt": null,
  "disabledReason": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

registrationId
string
required

Webhook registration identifier

Response

Webhook registration

id
string
url
string<uri>
status
string
eventTypes
string[]
description
string | null
createdAt
string<date-time>
disabledAt
string<date-time> | null
disabledReason
string | null