curl --request GET \
--url https://staging.api.us.aptlydone.com/actions/v1/actions/priorities \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-24T08:49:16.735Z",
"message": "Success",
"data": [
{
"id": "f5d112a4-cb8d-4a77-bbeb-cbb0c0c4d83a",
"actionPriorityName": "High",
"isEnabled": true,
"colorName": "green"
}
]
}
curl --request GET \
--url https://staging.api.us.aptlydone.com/actions/v1/actions/priorities \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-24T08:49:16.735Z",
"message": "Success",
"data": [
{
"id": "f5d112a4-cb8d-4a77-bbeb-cbb0c0c4d83a",
"actionPriorityName": "High",
"isEnabled": true,
"colorName": "green"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Action priorities retrieved successfully
The response is of type object
.