Webhook GET
GEThttps://sandbox.absmartly.com/v1/webhooks/:webhookId
Required Permissions: Webhook Get
or Webhook Admin
Request
Path Parameters
webhookId integerrequired
The id of the Webhook that you wish to get data from.
Responses
- 200
A JSON Object containing a webhook's data.
- application/json
- Schema
- Example (from schema)
Schema
webhook object
{
"webhook": {
"id": 0,
"name": "Slack",
"description": "Our connection between experiments and Slack",
"url": "string",
"enabled": true,
"ordered": false,
"max_retries": 10,
"created_at": "2025-06-18T16:08:32.573Z",
"created_by_user_id": 0,
"updated_at": "2025-06-18T16:08:32.573Z",
"updated_by_user_id": 0,
"created_by": {
"archived": false,
"avatar": {},
"avatar_file_upload_url": "/cropUrl/100x100/1.png",
"created_at": "2025-06-18T16:08:32.573Z",
"created_by_user_id": 0,
"department": "Marketing",
"email": "[email protected]"
},
"events": [
{
"webhook_id": 0,
"webhook_event_id": 0,
"enabled": true,
"event": {
"id": 0,
"name": "ExperimentCreated",
"description": "Event generated when an experiment draft is created."
}
}
]
}
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: A User API Key for API authorization. **Must be in the format "Api-Key your_user_api_key"**scheme: ^Api-Key\s\S+
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://sandbox.absmartly.com/v1/webhooks/:webhookId' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
ResponseClear