verial sandboxes commands manage Sandboxes — running instances of a single simulator, optionally attached to a dataset. A sandbox gives you live credentials (e.g. a FHIR base URL, payer portal_url, SFTP host) you can point an agent at for focused testing.
Authentication is required. See verial auth.
Subcommands
| Command | Description |
|---|---|
verial sandboxes list | List sandboxes in your organization. |
verial sandboxes create | Provision a sandbox from a simulator. |
verial sandboxes get | Get a single sandbox by ID. |
verial sandboxes teardown | Tear down a sandbox and release its resources. |
verial sandboxes events | List a sandbox’s event stream. |
verial sandboxes add-dataset | Attach a dataset to a sandbox. |
verial sandboxes remove-dataset | Detach a dataset from a sandbox. |
verial sandboxes list
List sandboxes visible to your organization. Supports cursor pagination and filtering by playground. Synopsis:| Flag | Description | Default |
|---|---|---|
--playground-id <id> | Only return sandboxes in this playground. | — |
--cursor <cursor> | Pagination cursor returned from a prior page. | — |
--limit <limit> | Items per page. | Server default |
verial sandboxes create
Provision a sandbox from a simulator. For portal/payer simulators the response includes aportal_url credential the agent can open directly.
Synopsis:
| Flag | Description | Required |
|---|---|---|
--simulator-id <id> | Simulator to provision. | Yes |
--dataset-id <id> | Optional dataset to attach at creation time. | No |
verial sandboxes get
Fetch a single sandbox, including its credentials and attached datasets. Synopsis:verial sandboxes teardown
Tear down a sandbox: release leased resources (phone numbers, FHIR store, portal session) and mark it inactive. Synopsis:verial sandboxes events
Stream the event log for a sandbox, most recent first. Events record every inbound/outbound interaction (FHIR request, fax send, portal submission, etc.). Synopsis:GET /sandboxes/:id/events.
verial sandboxes add-dataset
Attach a dataset to an existing sandbox. A child dataset is branched so the sandbox’s changes don’t mutate the original. Synopsis:POST /sandboxes/:id/datasets.
verial sandboxes remove-dataset
Detach a dataset from a sandbox. Synopsis:DELETE /sandboxes/:id/datasets/:datasetId.
Next Steps
Sandboxes
Sandbox lifecycle, credentials, and events.
Simulators
Define the simulator a sandbox provisions.