curl --request GET \
--url https://staging.api.us.aptlydone.com/matrix/v1/matrix/status \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-24T08:51:11.638Z",
"message": "Success",
"data": [
{
"id": "4a548542-f1c7-444e-9064-dda8ab4168ba",
"statusName": "Active",
"isActive": true
}
]
}
curl --request GET \
--url https://staging.api.us.aptlydone.com/matrix/v1/matrix/status \
--header 'Authorization: Bearer <token>'
{
"statusCode": 200,
"timestamp": "2025-06-24T08:51:11.638Z",
"message": "Success",
"data": [
{
"id": "4a548542-f1c7-444e-9064-dda8ab4168ba",
"statusName": "Active",
"isActive": true
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Matrix statuses retrieved successfully
The response is of type object
.