> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orum.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Persons 

> Sandbox Experience

## Simulating Person Statuses In Sandbox

In sandbox, all persons will move from a status of "created" to a status of "verified" unless you pass the below fields to simulate a non-verified status.

To simulate a non-verified status in sandbox, pass the status you want to simulate in the `first_name` field along with "person" in the `last_name` field. You must also pass all other required fields.

| **`first_name`** | **`last_name`** | **Results in`status`** |
| ---------------- | --------------- | ---------------------- |
| `"created"`      | `"person"`      | `"created"`            |
| `"rejected"`     | `"person"`      | `"rejected"`           |
| `"restricted"`   | `"person"`      | `"restricted"`         |
| `"closed"`       | `"person"`      | `"closed"`             |

After creating the person, the POST API response will always return the person with the `status` of "created". If you simulated a "created" status, the status will not be updated and you will not receive any further webhooks. For all other statuses, you will subsequently receive a webhook that maps to the status you simulated.

<Tip>
  [Configure webhooks](ref:configure-webhooks) to receive the expected status update events.
</Tip>
