Skip to main content
Manage playgrounds that provision live simulator instances from an environment definition.

Actions

ActionDescription
listList all playgrounds in the organization
createProvision a new playground from an environment
getGet a playground by ID
teardownTear down a playground and release its resources

Parameters

list

No parameters.

create

ParameterTypeRequiredDescription
environmentIdstringyesEnvironment ID to provision from

get

ParameterTypeRequiredDescription
idstringyesPlayground ID

teardown

ParameterTypeRequiredDescription
idstringyesPlayground ID

Examples

Provision a playground from an environment

{
  "action": "create",
  "environmentId": "env_abc123"
}

List all playgrounds

{
  "action": "list"
}

Tear down a playground

{
  "action": "teardown",
  "id": "pg_xyz789"
}