curl --request GET \
--url https://api.wirespeed.co/integration/health/summary \
--header 'Authorization: Bearer <token>'{
"healthy": 123,
"unhealthy": 123,
"unstable": 123,
"unknown": 123,
"totalErrors": 123,
"integrationsWithErrors": 123,
"dailyErrors": [
{
"date": "<string>",
"errors": 123
}
],
"errorsByIntegration": {}
}Returns counts by health status (healthy, unhealthy, unstable, unknown) for the attention banner and dashboards
curl --request GET \
--url https://api.wirespeed.co/integration/health/summary \
--header 'Authorization: Bearer <token>'{
"healthy": 123,
"unhealthy": 123,
"unstable": 123,
"unknown": 123,
"totalErrors": 123,
"integrationsWithErrors": 123,
"dailyErrors": [
{
"date": "<string>",
"errors": 123
}
],
"errorsByIntegration": {}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Count of integrations with healthy status
Count of integrations with unhealthy status
Count of integrations with unstable status
Count of integrations with unknown status
Total errors across all integrations in the last 30 days
Number of distinct integrations with errors in the last 30 days
Daily error counts for the last 30 days
Show child attributes
Per-integration error counts for the last 30 days. Key is integration ID, value is total errors.
Show child attributes