Skip to main content
The verial playgrounds commands manage Playgrounds — instantiated environments with live infrastructure (FHIR store provisioned, phone numbers leased, seed data loaded). Use them to spin up an environment on demand for interactive testing or CI runs. Authentication is required. See verial auth.

Subcommands

CommandDescription
verial playgrounds listList playgrounds in your organization.
verial playgrounds createInstantiate an environment as a playground.
verial playgrounds getGet a single playground by ID.
verial playgrounds teardownTear down a playground and release its resources.

verial playgrounds list

List playgrounds visible to your organization. Supports cursor pagination. Synopsis:
verial playgrounds list [--cursor <cursor>] [--limit <n>]
Options:
FlagDescriptionDefault
--cursor <cursor>Pagination cursor returned from a prior page.
--limit <limit>Items per page.Server default
REST equivalent: GET /playgrounds.

verial playgrounds create

Provision a playground from an environment: create the FHIR store, lease phone numbers, and load seed data. Synopsis:
verial playgrounds create --environment-id <id>
Options:
FlagDescriptionRequired
--environment-id <id>Environment to instantiate.Yes
Example:
verial playgrounds create --environment-id env_clxyz123
REST equivalent: POST /playgrounds.

verial playgrounds get

Fetch a single playground, including its provisioned services and credentials. Synopsis:
verial playgrounds get --id <id>
Example:
verial playgrounds get --id pg_clxyz456
REST equivalent: GET /playgrounds/:id.

verial playgrounds teardown

Tear down a playground: delete the FHIR store, release phone numbers, and mark it inactive. Synopsis:
verial playgrounds teardown --id <id>
Example:
verial playgrounds teardown --id pg_clxyz456
REST equivalent: DELETE /playgrounds/:id.

Next Steps

Playgrounds

Playground lifecycle and provisioned services.

Environments

Define the environment a playground instantiates.