Xeonr Developer Docs
API SpecificationSandboxes

Exec

POST
/containers.api.v1.SandboxService/Exec

first msg = ExecSpec, then stdin

Authorization

BearerAuth
AuthorizationBearer <token>

A namespace-scoped API key (cpk_…) for machines, or a Xeonr Auth OIDC token for humans. The key's namespace and role are pinned server-side.

In: header

Header Parameters

Connect-Protocol-Version*number

Define the version of the Connect protocol

Value in1
Connect-Timeout-Ms?number

Define the timeout, in ms

Request Body

application/connect+json

spec*
[key: string]?never

Response Body

application/connect+json

application/connect+json

curl -X POST "https://containers.xeonr.io/containers.api.v1.SandboxService/Exec" \  -H "Connect-Protocol-Version: 1" \  -H "Content-Type: application/connect+json" \  -d '<spec/>'
{
  "exit": {
    "code": 0,
    "termination": "TERMINATION_UNSPECIFIED",
    "usage": {
      "cpuMillisUsed": 0,
      "memoryPeakMb": 0,
      "wallMs": 0
    }
  }
}
{
  "code": "not_found",
  "message": "string",
  "details": [
    {
      "type": "string",
      "value": "string",
      "debug": {}
    }
  ]
}