curl --request GET \
--url https://staging.api.us.aptlydone.com/decision/v1/decisions/counts \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-24T10:47:32.804Z",
"message": "Success",
"data": {
"active": 5,
"inactive": 10,
"all": 20
}
}
curl --request GET \
--url https://staging.api.us.aptlydone.com/decision/v1/decisions/counts \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-24T10:47:32.804Z",
"message": "Success",
"data": {
"active": 5,
"inactive": 10,
"all": 20
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Tenant ID
"105fa115-52d0-4466-baff-740447a60774"
Decision counts retrieved successfully
The response is of type object
.