curl --request GET \
--url https://staging.api.us.aptlydone.com/actions/v1/actions/action-count \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-24T08:49:16.735Z",
"message": "Success",
"data": [
{
"id": "af137014-275e-4918-a937-0144950bc38f",
"actionStatusName": "In Progress",
"isEnabled": true
}
]
}
curl --request GET \
--url https://staging.api.us.aptlydone.com/actions/v1/actions/action-count \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-24T08:49:16.735Z",
"message": "Success",
"data": [
{
"id": "af137014-275e-4918-a937-0144950bc38f",
"actionStatusName": "In Progress",
"isEnabled": true
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Action Counts fetched successfully
The response is of type object
.