Get Webhook

Retrieves information about a specific webhook.

Http request
GET /webhooks/{webhookId}
Authentication
Authentication Type Supported
Organization User (CustomerEmployee) Yes
Delegated User (EndUser) No
Service Account Yes
Required permissions
Webhooks:Read (always required)
Authorization requirements
Header Type Required Description
Authorization string Yes Bearer token used to authenticate the request. See Authentication flows for instructions on generating this token.
Path parameters
Parameter Type Required Description
webhookId string Yes Unique identifier of the approval request. Minimum length is 1.
Request body
curl --request GET \
  --url https://api.digitalassets.ibm.com/webhooks/{webhookId} \
  --header 'Authorization: Bearer <token>'
Response
200: Success

Example response:

{
  "id": "<string>",
  "url": "<string>",
  "events": [
    "policy.triggered"
  ],
  "status": "Enabled",
  "dateCreated": "<string>",
  "dateUpdated": "<string>",
  "description": "<string>"
}