REST API Cloud Sessions
Cloud session routes record the lifetime and account usage for a cloud simulator, box, or build. They do not provision that infrastructure. The service that owns the simulator, box, or build starts the metering session, heartbeats it while the resource is alive, and stops it during teardown.
These routes require the sims scope.
Start a session
kind is required and must be sim, box, or build. The optional fields
name, externalId, device, tier, and region let the owning service map
its resource to the account record. tier accepts semantic or pixel.
projectId and repoId may also associate the usage with an account resource.
An API key always starts the session on its own account. If accountId is
present and names another account, the request returns 403 forbidden. A
session Bearer token names a person rather than an account, so it must send an
accountId the signed-in user can access.
A successful start returns 201:
Starting a session checks account coverage and the plan’s concurrency limit.
It returns 402 when the account cannot cover the operation and 429 concurrency_limit when that kind is already at its limit.
Heartbeat a session
A heartbeat banks elapsed runtime and returns the updated session. Send one at
least every five minutes. A session that misses that window is stopped as
idle at its last successful heartbeat, so an absent client does not keep
accruing usage.
Stop a session
Stopping banks the remaining runtime and returns the session with status: "stopped". An API-key stop records stopReason: "client". Stopping an
already stopped session returns 409 already_stopped.
List sessions
The response contains the account’s running and stopped sessions:
API keys read their own account without a query parameter. A session Bearer
token must request ?accountId=<account-id>.
Metering debits the same included allowance, prepaid balance, and spending limits described under Billing and Limits. rnx cloud rates remain subject to change before the hosted infrastructure launches, so account reporting is the authority for recorded usage.