Parameters
No parameters.
GET/v1/webhooks/{{webhook_id}}
bash
curl https://api.tradly.app/v1/webhooks/{{webhook_id}} \
-H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
-H "Content-Type: application/json" \
-d '{}'RESPONSE
json
{
"status": true,
"data": {
"webhook": {
"id": 1,
"url": "https://example.com/hook",
"events": [
"order.created"
]
}
}
}