Recovery Status
Get the current status of a recovery.
GET
/api/v1/recoveries/{recovery_number}/statusDescription
Returns recovery number, internal employee ID, and human-readable status.
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer <access_token> | Yes |
| Content-Type | application/json | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| recovery_number | string | Yes | Recovery code. |
Response
Related Endpoints
Did this page help you?
Request
curl -X GET https://uat.unduit.com/api-exposed/api/v1/recoveries/REC-2026-001/status \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"Success Response
{
"data": {
"recovery_number": "REC-2026-001",
"employee_id": 8842,
"status": "Diagnostic Completed"
}
}