Create a new webhook on a robot
开发环境
http://dev-cn.your-api-server.com
开发环境
http://dev-cn.your-api-server.com
POST
/robots/{robotId}/webhooks
webhooks
请求示例请求示例
Go
Java
Objective-C
Shell
curl --location --request POST 'http://dev-cn.your-api-server.com/robots/c3689adb-50aa-44af-b265-a7e0d4e5846e/webhooks' \
--header 'authorization: Bearer YOUR_SECRET_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"hookUrl": "https://example.com/v2/webhooks/callback/events",
"eventType": "taskCapturedDataChanged"
}'
响应示例响应示例
200 - 示例 1
{
"statusCode": 200,
"messageCode": "success",
"webhook": {
"id": "6d7f1218-43fb-4735-ac71-21e81b1ab23e",
"url": "https://example.com/v2/webhooks/callback/events",
"webhookEvent": "taskCapturedDataChanged",
"createdAt": 1678795867879
}
}
请求参数
Path 参数
robotId
string
必需
示例值:
c3689adb-50aa-44af-b265-a7e0d4e5846e
Header 参数
authorization
string
必需
示例值:
Bearer YOUR_SECRET_API_KEY
Body 参数application/json
返回响应
修改于 2024-02-20 02:11:12