curl "https://api.scanova.io/bulk-operation/stats/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"total": 12,
"in_progress": 1,
"completed": 10,
"failed": 1
}
Bulk Operations
Get bulk operation stats
GET /bulk-operation/stats/
GET
/
bulk-operation
/
stats
/
curl "https://api.scanova.io/bulk-operation/stats/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"total": 12,
"in_progress": 1,
"completed": 10,
"failed": 1
}
Gets aggregate counts across the account’s bulk operations, on the Management API host (
Scope matches List bulk operations: the account’s own operations, plus (for team accounts) operations created by shared users, unless called via account impersonation.
api.scanova.io), authenticated with your raw Management API key.
GET https://api.scanova.io/bulk-operation/stats/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
curl "https://api.scanova.io/bulk-operation/stats/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"total": 12,
"in_progress": 1,
"completed": 10,
"failed": 1
}
Related
- List bulk operations — see the underlying records these counts summarize.
- Management API overview — the auth scheme and quota rules that apply to this endpoint.
Authorizations
Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: 401f7ac837da42b97f613d789819ff93537bee6a. A header containing more than one space-separated part is rejected outright. Requests also require the request's Host header to be the management API host (e.g. api.scanova.io) — the same key sent to the regular API host will not authenticate.
Response
200 - application/json
Aggregate counts.
Was this page helpful?