Update user approval status (PUT)

This API allows you to change a user’s approval status from their current one to either Approved or Rejected.

Call

In this call, it is possible to change the user’s approval status to either APPROVED or REJECTED, using the “signupStatus” field like you would update any other field. When a user is approved, they are allowed into the Alumni platform and can engage in the community, when they are rejected, they cannot.

Example

The following example shows how to change a user’s status to REJECTED:

{
  "signupStatus":"REJECTED"
}

Response

This API will return a JSON payload re-stating the user’s new status in the alumni database.

Example

{
  "appStatus": "REJECTED"
}