Recovery Details

Retrieve detailed information about a specific asset recovery.

GET
/api/v1/recover/recovery/:recovery_code

Description

Retrieve comprehensive details about a specific asset recovery, including employee information, items recovered, recovery status, and timestamps. This endpoint provides a complete view of a single recovery transaction.

Request

Headers

HeaderValueRequired
AuthorizationBearer <token>Yes

Path Parameters

ParameterTypeRequiredDescription
recovery_codestringYesUnique recovery code for the asset recovery

Response

Response Fields

FieldTypeDescription
successbooleanIndicates if the request was successful
recoveryobjectRecovery details object
recovery.recovery_codestringUnique recovery code
recovery.campaign_numbernumberAssociated campaign identifier
recovery.employeeobjectEmployee information object
recovery.employee.emailstringEmployee email address
recovery.employee.firstnamestringEmployee first name
recovery.employee.lastnamestringEmployee last name
recovery.statusstringRecovery status (pending, in_progress, completed)
recovery.items_recoverednumberNumber of items recovered
recovery.created_atstringISO 8601 timestamp when recovery was initiated
recovery.completed_atstringISO 8601 timestamp when recovery was completed (null if pending)

Error Responses

Common error responses you may encounter when using this endpoint.

Notes

  • This endpoint provides granular details about a single asset recovery transaction using the unique recovery code.
  • The completed_at field will be null for recoveries that are still pending or in progress.
  • Use this endpoint to track the status and timeline of individual recovery operations.
  • The items_recovered count reflects the total number of assets successfully retrieved from the employee.
  • Recovery codes are generated when employees are added to a campaign via the Bulk Upload endpoint.

Related Endpoints

Did this page help you?