Как подключить webhooks
Когда использовать webhooks
Сценарий
События
Создать webhook endpoint
curl -sS https://example.com/api/v3/private/webhooks \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"url": "https://client.example.net/webhooks/iex",
"events": ["order.created", "order.status_changed"],
"description": "Production order status handler"
}'Получить список webhooks
Отправить тестовое событие
Изменить webhook
Сменить webhook secret
Требования к receiver
API Reference
Последнее обновление
Это было полезно?