Set an Applicant's Status

Overview

This action allows you to set the status of an applicant.

Action Type

  • set_app_status

Required Data

  • app_id The id of the applicant for which to set the status.
  • status A string of the status to be set.

Optional Data

None.

Example Request Payload

{
  "type": "set_app_status",
  "data": {
  	"app_id": 3640,
    "status": "Interview pending!"
  }
}

Usage

Upon execution of the action, you will see the applicant have the submitted status:

1083