Endpoints for driving entity state in sandbox environments. These endpoints are sandbox-only and return 404 in production. Use them to simulate status transitions and requirements-due scenarios when testing your integration.
Sandbox only — not available in Production.
Marks the specified requirement fields as due on an entity. Use this to test how your integration handles the requirements-due state.
The requirement fields to mark as due.
| fields required | Array of strings The requirement fields to mark as due. |
Requirements due set successfully
Unknown or missing fields
Unauthorized
Entity not found
Dependency error
{- "fields": [
- "individual.identification.document"
]
}{- "entity_id": "ent_w4jelhppmfiufdnatam37wrfc4",
- "previous_status": "Active",
- "current_status": "requirements_due",
- "requirements_due": [
- "individual.identification.document"
]
}Sandbox only — not available in Production.
Executes a pre-defined scenario against an entity, triggering the associated state transition or capability change. Use GET /simulate/scenarios to list available scenario IDs.
Scenario executed successfully
Scenario execution accepted and in progress
Unauthorized
Entity or scenario not found
Dependency error
{- "entity_id": "ent_w4jelhppmfiufdnatam37wrfc4",
- "scenario_id": "go_active",
- "scenario_name": "Go Active",
- "previous_status": "RequirementsDue",
- "current_status": "Active",
- "requirements_due": [
- "individual.identification.document"
]
}Sandbox only — not available in Production.
Forces the entity to the specified status, bypassing normal onboarding flow. Use this to test how your integration handles different entity states.
The status to apply to the entity.
Status updated successfully
Status transition accepted and in progress
Invalid status value or transition not allowed
Unauthorized
Entity not found
Dependency error
{- "status": "active"
}{- "entity_id": "ent_w4jelhppmfiufdnatam37wrfc4",
- "previous_status": "Pending",
- "current_status": "Active"
}Sandbox only — not available in Production.
Returns all requirement fields that can be set as due on an entity. Use the field values when calling the Set requirements due endpoint.
Requirements listed successfully
Unauthorized
Simulator not available in this environment. These endpoints are not registered in production.
[- {
- "field": "individual.identification.document",
- "type": "string"
}
]Sandbox only — not available in Production.
Returns all pre-defined scenarios available. Use the scenario IDs when calling the run scenario endpoint.
Scenarios listed successfully
Unauthorized
Simulator not available in this environment. These endpoints are not registered in production.
[- {
- "id": "go_active",
- "name": "Go Active",
- "description": "Transitions the entity to active status.",
- "action": "set_status",
- "status": "active",
- "requirements_due": [
- "individual.identification.document"
]
}
]