Campaign Details

Retrieve detailed information about a specific recovery campaign.

GET
/api/v1/recover/campaign/:campaign_number

Description

Retrieve comprehensive details about a specific recovery campaign, including campaign metadata, employee information, recovery codes, and campaign status. This endpoint provides a complete view of all activities and participants within a campaign.

Request

Headers

HeaderValueRequired
AuthorizationBearer <token>Yes

Path Parameters

ParameterTypeRequiredDescription
campaign_numberstringYesUnique identifier of the recovery campaign

Response

Response Fields

FieldTypeDescription
successbooleanIndicates if the request was successful
campaignobjectCampaign details object
campaign.campaign_numbernumberUnique identifier for the campaign
campaign.campaign_namestringName of the campaign
campaign.campaign_statusstringCurrent status (active, completed)
campaign.created_atstringCampaign creation date
campaign.total_employeesnumberTotal number of employees in the campaign
campaign.total_recoverednumberNumber of assets successfully recovered
campaign.total_pendingnumberNumber of pending recoveries
campaign.employeesarrayArray of employee objects in the campaign
campaign.employees[].emailstringEmployee email address
campaign.employees[].firstnamestringEmployee first name
campaign.employees[].lastnamestringEmployee last name
campaign.employees[].recovery_codestringUnique recovery code for the employee
campaign.employees[].statusstringRecovery status (pending, completed)

Error Responses

Common error responses you may encounter when using this endpoint.

Notes

  • This endpoint provides comprehensive details about a campaign including all employees and their recovery status.
  • The employees array contains full details for each participant, including their recovery code and current status.
  • Use this endpoint to monitor campaign progress and identify which employees have completed recovery vs. those still pending.
  • For individual employee recovery details, use the Recovery Details endpoint with the specific recovery_code.

Related Endpoints

Did this page help you?