curl --request GET \
--url https://api.platform.dakota.xyz/webhooks/targets \
--header 'x-api-key: <api-key>'{
"data": [
{
"id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
"url": "https://example.com/webhooks/receive",
"global": false,
"time_last_healthy": 123,
"time_last_attempted": 123,
"event_types": [
"api_key.created"
]
}
],
"meta": {
"total_count": 100,
"has_more_after": true,
"has_more_before": false,
"limit_reached": false
}
}Retrieve all webhook targets
curl --request GET \
--url https://api.platform.dakota.xyz/webhooks/targets \
--header 'x-api-key: <api-key>'{
"data": [
{
"id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
"url": "https://example.com/webhooks/receive",
"global": false,
"time_last_healthy": 123,
"time_last_attempted": 123,
"event_types": [
"api_key.created"
]
}
],
"meta": {
"total_count": 100,
"has_more_after": true,
"has_more_before": false,
"limit_reached": false
}
}