Get a list of webhooks
Get a list of all the current webhooks.
Requires an API key with the webhooks:read
scope.
GET
/webhooks
curl \
--request GET 'https://api.mycirrus.cloud/v1/webhooks'
Response examples (200)
[
{
"id": "xxxxxxxxxxxx",
"url": "https://example.com/mywebhook",
"type": "NewMeasurement",
"secret": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"instrument": "QT123456"
}
]
Response examples (401)
{
"error": "TokenExpired",
"description": "Your access token is invalid or has expired. Try refreshing the token."
}
Response examples (403)
{
"error": "AccessDenied",
"description": "You do not have permission to access this data."
}
Response examples (429)
{
"error": "TooManyRequests",
"description": "You have made too many requests in a short time. Please wait before trying again."
}