---
title: "Check process status"
description: "Returns the status of a reviewer assignment process by process ID."
contentType: "api-reference"
url: "https://developer.mindtickle.com/docs/training/modules/check-process-status/"
---

## Prerequisites

1. [Authentication and setup](/docs/getting-started/authentication-and-setup/): A valid access token.
2. [Assign reviewers to users](/docs/training/modules/assign-reviewers-to-users/): The call that returns the process ID.

## Endpoint

```http
GET /services/data/v2.0/mtobjects/BulkAddReviewers/status/PROCESS_ID
```

Replace `PROCESS_ID` with the process ID returned by [Assign reviewers to users](/docs/training/modules/assign-reviewers-to-users/).

Base URL: the standard REST host for your region. See [Base URLs](/docs/getting-started/authentication-and-setup/#base-urls).

Headers: `Authorization: Bearer ACCESS_TOKEN`.

## Path parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `PROCESS_ID` | string | Required | Process ID generated as a response for the Assign reviewers to users API. |

## Request

This endpoint does not have any JSON request parameters.

## Response

| Field | Type | Description |
| --- | --- | --- |
| `status` | string | Status for the specified process ID, shown as a single string in the response example: `SUCCESS`, `QUEUED`, `RUNNING`, or `FAILED`. |

### Response example

```json
{
  "status": "SUCCESS"
}
```

## Notes

- **Scope:** This request is used for the process IDs generated as a response for the [Assign reviewers to users](/docs/training/modules/assign-reviewers-to-users/) API only.

## Related

- [Assign reviewers to users](/docs/training/modules/assign-reviewers-to-users/): Assign reviewers and get a process ID.
