GET - Webhook
This API allows authenticated users to retrieve a specific webhook by its unique identifier. Only webhooks created by the authenticated user can be accessed, ensuring proper data isolation and security.
Key Notes:
- Requires authentication and ownership verification (webhook must be created by the authenticated user).
- Returns complete webhook details including configuration and metadata.
- The webhook ID must be a valid UUID format.
- Returns 404 if webhook doesn’t exist or user doesn’t have access to it.
Path Parameters:
- id (required): Unique identifier of the webhook (UUID format)
Scenario: Retrieving Webhook Details
- A developer wants to check the configuration of a specific webhook they created.
- They call this endpoint with the webhook’s UUID.
- The system verifies ownership and returns the webhook details.
- This is useful for debugging webhook issues or verifying configuration before updates.
GET
Get Webhook by ID
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique identifier of the webhook.
Response
Webhook retrieved successfully.