Experimental
ListProcesses lists processes in creation order.
/v1/processes Connection and access
API connection and authentication guidance
{endpoint}
endpoint: The sandbox API base URL from Sandbox.core.endpoint.uri; preserve its path prefix when appending /v1 routes. HTTP endpoints require a scoped endpoint bearer; direct Unix sockets use socket access control.
Use one of these alternatives. Requirements within an alternative apply together.
sandboxBearer
Parameters
pageSize
query
page_size is an optional page size.
Omitted or zero uses the backend default. Unless the operation states otherwise, page-size limits and handling of larger requests are backend-specific; use the backend support guide. Continue with nextPageToken until it is empty.
Type:
integer
All schema constraints and annotations
{
"title": "page_size",
"type": "integer"
}pageToken
query
Type:
string
All schema constraints and annotations
{
"title": "page_token",
"type": "string"
}filter
query
Type:
string
All schema constraints and annotations
{
"title": "filter",
"type": "string"
}Request and responses
Response
200
application/json
Schema:
ListProcessesResponse
Response
default
application/json
Schema:
Error
Schema example
{
"code": "notFound",
"details": [],
"message": "sandbox not found"
}Referenced schemas
#/components/schemas/ListProcessesResponse
Complete operation contract
{
"description": "ListProcesses lists processes in creation order.",
"operationId": "listProcesses",
"parameters": [
{
"description": "page_size is an optional page size.\n\nOmitted or zero uses the backend default. Unless the operation states otherwise, page-size limits and handling of larger requests are backend-specific; use the backend support guide. Continue with nextPageToken until it is empty.",
"in": "query",
"name": "pageSize",
"required": false,
"schema": {
"title": "page_size",
"type": "integer"
}
},
{
"description": "page_token is an optional continuation token.",
"in": "query",
"name": "pageToken",
"required": false,
"schema": {
"title": "page_token",
"type": "string"
}
},
{
"description": "filter is comma-separated exact-match field=value terms; the portable fields are\nsession and state.",
"in": "query",
"name": "filter",
"required": false,
"schema": {
"title": "filter",
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ListProcessesResponse"
}
}
},
"description": "Success"
},
"default": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
},
"description": "The structured Error body identifies the failure with a stable code and optional typed details."
}
},
"security": [
{
"sandboxBearer": []
}
],
"servers": [
{
"url": "{endpoint}",
"variables": {
"endpoint": {
"default": "https://sandbox.invalid",
"description": "The sandbox API base URL from Sandbox.core.endpoint.uri; preserve its path prefix when appending /v1 routes. HTTP endpoints require a scoped endpoint bearer; direct Unix sockets use socket access control."
}
}
}
],
"summary": "ListProcesses lists processes in creation order.",
"tags": [
"Processes"
],
"x-sbx-authenticated-only": false,
"x-sbx-conditional-permissions": [],
"x-sbx-plane": "data",
"x-sbx-required-permissions": [
"sandboxesExec"
],
"x-sbx-serving-surface": "sandboxEndpoint"
}