Overview
Creates a webhook endpoint to receive event notifications for different types of events.
Set Request Header Group
- Header
cURL -X POST /open-api/v1/webhooks/create
'Content-Type:application/json',
'Authorization:${open_api_token}'
Query Details
View the complete request parameters.
- Resquest
-d '{
"webhook_name": "webhook_name",
"webhook_url": "https://example.com",
}'
Query Details
- Responses
{
"code": "200",
"msg": "Success",
"trace_id": "fbcc5c1eb94c4a648c17c6b92f10d0f5",
"data": {
"webhook_id": 37,
"webhook_name": "webhook_name",
"webhook_url": "https://example.com",
"sign_secret": "xMt7NaLFEICFQTzX8KTKY5QQmDarbBiXy8b8X9yxHZSkdSAzuZmePsdZSfgOgxhx",
"creator_id": 246011,
"creator_name": "246011",
"create_time": 1750758576144,
"operator_id": 246011,
"operator_name": "246011",
"operate_time": 1750758576144
}
}
- View the complete response parameters.