verial simulators commands manage Simulators — the simulated entities (FHIR store, voice line, payer portal, fax endpoint, etc.) that live inside an Environment. Use them to script simulator lifecycle in CI alongside your agent code.
Authentication is required. See verial auth.
Subcommands
| Command | Description |
|---|---|
verial simulators list | List simulators in your organization. |
verial simulators create | Create a new simulator of a given type. |
verial simulators get | Get a single simulator by ID or slug. |
verial simulators update | Update a simulator’s name, description, or config. |
verial simulators delete | Delete a simulator. |
verial simulators list
List simulators visible to your organization. Supports cursor pagination and filtering by environment. Synopsis:| Flag | Description | Default |
|---|---|---|
--environment-id <id> | Only return simulators belonging to this environment. | — |
--cursor <cursor> | Pagination cursor returned from a prior page. | — |
--limit <limit> | Items per page. | Server default |
verial simulators create
Create a simulator.--type is validated against the SDK’s SimulatorType enum: one of FHIR, HL7, CDSHooks, Voice, Fax, SFTP, Email, Message, Payer, Clearinghouse.
Synopsis:
| Flag | Description | Required |
|---|---|---|
--type <type> | Simulator type (see enum above). | Yes |
--name <name> | Simulator name. | Yes |
--description <desc> | Free-text description. | No |
--config <json> | Inline JSON config (type-specific). | No |
verial simulators get
Fetch a single simulator by ID or slug. Synopsis:verial simulators update
Update a simulator’s name, description, or config. Omitted fields are left unchanged. Synopsis:verial simulators delete
Delete a simulator. Sandboxes already provisioned from it are not torn down automatically. Synopsis:Next Steps
Simulators
Simulator types and config shape.
Sandboxes
Provision a running simulator instance.