curl --request POST \
--url https://api.checkfu.com/v1/sessions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'checkfu-beta: <checkfu-beta>' \
--header 'checkfu-version: <checkfu-version>' \
--data '
{
"agent": "<string>",
"environment_id": "<string>",
"initial_events": [
{
"type": "user.message",
"content": [
{
"type": "text",
"text": "<string>"
}
]
}
],
"metadata": {},
"resources": [
{
"authorization_token": "<string>",
"type": "github_repository",
"url": "<string>",
"checkout": {
"type": "branch",
"name": "<string>"
},
"mount_path": "<string>"
}
],
"title": "<string>",
"vault_ids": [
"<string>"
]
}
'import requests
url = "https://api.checkfu.com/v1/sessions"
payload = {
"agent": "<string>",
"environment_id": "<string>",
"initial_events": [
{
"type": "user.message",
"content": [
{
"type": "text",
"text": "<string>"
}
]
}
],
"metadata": {},
"resources": [
{
"authorization_token": "<string>",
"type": "github_repository",
"url": "<string>",
"checkout": {
"type": "branch",
"name": "<string>"
},
"mount_path": "<string>"
}
],
"title": "<string>",
"vault_ids": ["<string>"]
}
headers = {
"checkfu-version": "<checkfu-version>",
"checkfu-beta": "<checkfu-beta>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'checkfu-version': '<checkfu-version>',
'checkfu-beta': '<checkfu-beta>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
agent: '<string>',
environment_id: '<string>',
initial_events: [{type: 'user.message', content: [{type: 'text', text: '<string>'}]}],
metadata: {},
resources: [
{
authorization_token: '<string>',
type: 'github_repository',
url: '<string>',
checkout: {type: 'branch', name: '<string>'},
mount_path: '<string>'
}
],
title: '<string>',
vault_ids: ['<string>']
})
};
fetch('https://api.checkfu.com/v1/sessions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.checkfu.com/v1/sessions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'agent' => '<string>',
'environment_id' => '<string>',
'initial_events' => [
[
'type' => 'user.message',
'content' => [
[
'type' => 'text',
'text' => '<string>'
]
]
]
],
'metadata' => [
],
'resources' => [
[
'authorization_token' => '<string>',
'type' => 'github_repository',
'url' => '<string>',
'checkout' => [
'type' => 'branch',
'name' => '<string>'
],
'mount_path' => '<string>'
]
],
'title' => '<string>',
'vault_ids' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"checkfu-beta: <checkfu-beta>",
"checkfu-version: <checkfu-version>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.checkfu.com/v1/sessions"
payload := strings.NewReader("{\n \"agent\": \"<string>\",\n \"environment_id\": \"<string>\",\n \"initial_events\": [\n {\n \"type\": \"user.message\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"<string>\"\n }\n ]\n }\n ],\n \"metadata\": {},\n \"resources\": [\n {\n \"authorization_token\": \"<string>\",\n \"type\": \"github_repository\",\n \"url\": \"<string>\",\n \"checkout\": {\n \"type\": \"branch\",\n \"name\": \"<string>\"\n },\n \"mount_path\": \"<string>\"\n }\n ],\n \"title\": \"<string>\",\n \"vault_ids\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("checkfu-version", "<checkfu-version>")
req.Header.Add("checkfu-beta", "<checkfu-beta>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.checkfu.com/v1/sessions")
.header("checkfu-version", "<checkfu-version>")
.header("checkfu-beta", "<checkfu-beta>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"agent\": \"<string>\",\n \"environment_id\": \"<string>\",\n \"initial_events\": [\n {\n \"type\": \"user.message\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"<string>\"\n }\n ]\n }\n ],\n \"metadata\": {},\n \"resources\": [\n {\n \"authorization_token\": \"<string>\",\n \"type\": \"github_repository\",\n \"url\": \"<string>\",\n \"checkout\": {\n \"type\": \"branch\",\n \"name\": \"<string>\"\n },\n \"mount_path\": \"<string>\"\n }\n ],\n \"title\": \"<string>\",\n \"vault_ids\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/sessions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["checkfu-beta"] = '<checkfu-beta>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"agent\": \"<string>\",\n \"environment_id\": \"<string>\",\n \"initial_events\": [\n {\n \"type\": \"user.message\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"<string>\"\n }\n ]\n }\n ],\n \"metadata\": {},\n \"resources\": [\n {\n \"authorization_token\": \"<string>\",\n \"type\": \"github_repository\",\n \"url\": \"<string>\",\n \"checkout\": {\n \"type\": \"branch\",\n \"name\": \"<string>\"\n },\n \"mount_path\": \"<string>\"\n }\n ],\n \"title\": \"<string>\",\n \"vault_ids\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"agent": {
"id": "<string>",
"description": "<string>",
"mcp_servers": [
{
"type": "url",
"name": "<string>",
"url": "<string>"
}
],
"model": {
"id": "<string>",
"effort": {
"type": "low"
},
"inference_geo": "global",
"speed": "standard"
},
"name": "<string>",
"skills": [
{
"type": "anthropic",
"skill_id": "<string>",
"version": "<string>"
}
],
"system": "<string>",
"tools": [
{
"type": "agent_toolset_20260401",
"configs": [
{
"name": "bash",
"type": "bash",
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
],
"default_config": {
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
}
],
"multiagent": {
"agents": [
{
"id": "<string>",
"description": "<string>",
"mcp_servers": [
{
"type": "url",
"name": "<string>",
"url": "<string>"
}
],
"model": {
"id": "<string>",
"effort": {
"type": "low"
},
"inference_geo": "global",
"speed": "standard"
},
"name": "<string>",
"skills": [
{
"type": "anthropic",
"skill_id": "<string>",
"version": "<string>"
}
],
"system": "<string>",
"tools": [
{
"type": "agent_toolset_20260401",
"configs": [
{
"name": "bash",
"type": "bash",
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
],
"default_config": {
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
}
],
"type": "agent",
"version": 1
}
],
"type": "coordinator"
},
"type": "agent",
"version": 1
},
"archived_at": "<string>",
"budget": {
"type": "limit",
"max_list_cost": {
"amount": "<string>",
"currency": "USD"
}
},
"created_at": "<string>",
"environment_id": "<string>",
"metadata": {},
"outcome_evaluations": [
{
"completed_at": "<string>",
"description": "<string>",
"explanation": "<string>",
"iteration": 1,
"outcome_id": "<string>",
"result": "<string>",
"type": "outcome_evaluation"
}
],
"resources": [
{
"id": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"mount_path": "<string>",
"type": "github_repository",
"url": "<string>",
"checkout": {
"type": "branch",
"name": "<string>"
}
}
],
"stats": {
"active_seconds": 1,
"duration_seconds": 1
},
"status": "rescheduling",
"title": "<string>",
"type": "session",
"updated_at": "<string>",
"usage": {
"active_seconds": 1,
"cache_creation": {
"ephemeral_1h_input_tokens": 1,
"ephemeral_5m_input_tokens": 1
},
"cache_read_input_tokens": 1,
"input_tokens": 1,
"list_cost": {
"amount": "<string>",
"currency": "USD"
},
"output_tokens": 1,
"server_tool_use": {
"web_fetch_requests": 1,
"web_search_requests": 1
}
},
"vault_ids": [
"<string>"
],
"automation_id": "<string>"
}{
"error": {
"type": "validation.malformed",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-malformed"
}
}{
"error": {
"type": "auth.invalid_key",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-invalid-key"
}
}{
"error": {
"type": "auth.disabled_tenancy",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-disabled-tenancy"
}
}{
"error": {
"type": "validation.not_found",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-not-found"
}
}{
"error": {
"type": "validation.conflict",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-conflict"
}
}{
"error": {
"type": "model.no_eligible_model",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#model-no-eligible-model"
}
}{
"error": {
"type": "budget.exceeded",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#budget-exceeded"
}
}{
"error": {
"type": "runtime.internal",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-internal"
}
}{
"error": {
"type": "runtime.runner_unavailable",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-runner-unavailable"
}
}Create a Session
Creates a CMA-shaped Session from an agent selector and an environment_id. The Agent selector resolves one exact Agent Version; the Environment supplies the versioned execution recipe. Optional budget, initial_events, metadata, resources, title, and ordered vault_ids match Claude Managed Agents. Resources may be repositories, files, or memory stores and are snapshotted into the Session. The authenticated API key supplies organization and Workspace authority; the request never accepts or manufactures a Principal, Deployment, Revision, sandbox profile, or client reference. Up to 50 initial_events may start work in the create call. Send an Idempotency-Key so an identical retry returns the original Session; success returns the Session resource with 201.
Checkfu support posture: alpha; hosted. Required evidence journey: session-turn. Deployment-specific readiness and the latest proven release are available from GET /v1/support/capabilities.
curl --request POST \
--url https://api.checkfu.com/v1/sessions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'checkfu-beta: <checkfu-beta>' \
--header 'checkfu-version: <checkfu-version>' \
--data '
{
"agent": "<string>",
"environment_id": "<string>",
"initial_events": [
{
"type": "user.message",
"content": [
{
"type": "text",
"text": "<string>"
}
]
}
],
"metadata": {},
"resources": [
{
"authorization_token": "<string>",
"type": "github_repository",
"url": "<string>",
"checkout": {
"type": "branch",
"name": "<string>"
},
"mount_path": "<string>"
}
],
"title": "<string>",
"vault_ids": [
"<string>"
]
}
'import requests
url = "https://api.checkfu.com/v1/sessions"
payload = {
"agent": "<string>",
"environment_id": "<string>",
"initial_events": [
{
"type": "user.message",
"content": [
{
"type": "text",
"text": "<string>"
}
]
}
],
"metadata": {},
"resources": [
{
"authorization_token": "<string>",
"type": "github_repository",
"url": "<string>",
"checkout": {
"type": "branch",
"name": "<string>"
},
"mount_path": "<string>"
}
],
"title": "<string>",
"vault_ids": ["<string>"]
}
headers = {
"checkfu-version": "<checkfu-version>",
"checkfu-beta": "<checkfu-beta>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'checkfu-version': '<checkfu-version>',
'checkfu-beta': '<checkfu-beta>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
agent: '<string>',
environment_id: '<string>',
initial_events: [{type: 'user.message', content: [{type: 'text', text: '<string>'}]}],
metadata: {},
resources: [
{
authorization_token: '<string>',
type: 'github_repository',
url: '<string>',
checkout: {type: 'branch', name: '<string>'},
mount_path: '<string>'
}
],
title: '<string>',
vault_ids: ['<string>']
})
};
fetch('https://api.checkfu.com/v1/sessions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.checkfu.com/v1/sessions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'agent' => '<string>',
'environment_id' => '<string>',
'initial_events' => [
[
'type' => 'user.message',
'content' => [
[
'type' => 'text',
'text' => '<string>'
]
]
]
],
'metadata' => [
],
'resources' => [
[
'authorization_token' => '<string>',
'type' => 'github_repository',
'url' => '<string>',
'checkout' => [
'type' => 'branch',
'name' => '<string>'
],
'mount_path' => '<string>'
]
],
'title' => '<string>',
'vault_ids' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"checkfu-beta: <checkfu-beta>",
"checkfu-version: <checkfu-version>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.checkfu.com/v1/sessions"
payload := strings.NewReader("{\n \"agent\": \"<string>\",\n \"environment_id\": \"<string>\",\n \"initial_events\": [\n {\n \"type\": \"user.message\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"<string>\"\n }\n ]\n }\n ],\n \"metadata\": {},\n \"resources\": [\n {\n \"authorization_token\": \"<string>\",\n \"type\": \"github_repository\",\n \"url\": \"<string>\",\n \"checkout\": {\n \"type\": \"branch\",\n \"name\": \"<string>\"\n },\n \"mount_path\": \"<string>\"\n }\n ],\n \"title\": \"<string>\",\n \"vault_ids\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("checkfu-version", "<checkfu-version>")
req.Header.Add("checkfu-beta", "<checkfu-beta>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.checkfu.com/v1/sessions")
.header("checkfu-version", "<checkfu-version>")
.header("checkfu-beta", "<checkfu-beta>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"agent\": \"<string>\",\n \"environment_id\": \"<string>\",\n \"initial_events\": [\n {\n \"type\": \"user.message\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"<string>\"\n }\n ]\n }\n ],\n \"metadata\": {},\n \"resources\": [\n {\n \"authorization_token\": \"<string>\",\n \"type\": \"github_repository\",\n \"url\": \"<string>\",\n \"checkout\": {\n \"type\": \"branch\",\n \"name\": \"<string>\"\n },\n \"mount_path\": \"<string>\"\n }\n ],\n \"title\": \"<string>\",\n \"vault_ids\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/sessions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["checkfu-beta"] = '<checkfu-beta>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"agent\": \"<string>\",\n \"environment_id\": \"<string>\",\n \"initial_events\": [\n {\n \"type\": \"user.message\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"<string>\"\n }\n ]\n }\n ],\n \"metadata\": {},\n \"resources\": [\n {\n \"authorization_token\": \"<string>\",\n \"type\": \"github_repository\",\n \"url\": \"<string>\",\n \"checkout\": {\n \"type\": \"branch\",\n \"name\": \"<string>\"\n },\n \"mount_path\": \"<string>\"\n }\n ],\n \"title\": \"<string>\",\n \"vault_ids\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"agent": {
"id": "<string>",
"description": "<string>",
"mcp_servers": [
{
"type": "url",
"name": "<string>",
"url": "<string>"
}
],
"model": {
"id": "<string>",
"effort": {
"type": "low"
},
"inference_geo": "global",
"speed": "standard"
},
"name": "<string>",
"skills": [
{
"type": "anthropic",
"skill_id": "<string>",
"version": "<string>"
}
],
"system": "<string>",
"tools": [
{
"type": "agent_toolset_20260401",
"configs": [
{
"name": "bash",
"type": "bash",
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
],
"default_config": {
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
}
],
"multiagent": {
"agents": [
{
"id": "<string>",
"description": "<string>",
"mcp_servers": [
{
"type": "url",
"name": "<string>",
"url": "<string>"
}
],
"model": {
"id": "<string>",
"effort": {
"type": "low"
},
"inference_geo": "global",
"speed": "standard"
},
"name": "<string>",
"skills": [
{
"type": "anthropic",
"skill_id": "<string>",
"version": "<string>"
}
],
"system": "<string>",
"tools": [
{
"type": "agent_toolset_20260401",
"configs": [
{
"name": "bash",
"type": "bash",
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
],
"default_config": {
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
}
],
"type": "agent",
"version": 1
}
],
"type": "coordinator"
},
"type": "agent",
"version": 1
},
"archived_at": "<string>",
"budget": {
"type": "limit",
"max_list_cost": {
"amount": "<string>",
"currency": "USD"
}
},
"created_at": "<string>",
"environment_id": "<string>",
"metadata": {},
"outcome_evaluations": [
{
"completed_at": "<string>",
"description": "<string>",
"explanation": "<string>",
"iteration": 1,
"outcome_id": "<string>",
"result": "<string>",
"type": "outcome_evaluation"
}
],
"resources": [
{
"id": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"mount_path": "<string>",
"type": "github_repository",
"url": "<string>",
"checkout": {
"type": "branch",
"name": "<string>"
}
}
],
"stats": {
"active_seconds": 1,
"duration_seconds": 1
},
"status": "rescheduling",
"title": "<string>",
"type": "session",
"updated_at": "<string>",
"usage": {
"active_seconds": 1,
"cache_creation": {
"ephemeral_1h_input_tokens": 1,
"ephemeral_5m_input_tokens": 1
},
"cache_read_input_tokens": 1,
"input_tokens": 1,
"list_cost": {
"amount": "<string>",
"currency": "USD"
},
"output_tokens": 1,
"server_tool_use": {
"web_fetch_requests": 1,
"web_search_requests": 1
}
},
"vault_ids": [
"<string>"
],
"automation_id": "<string>"
}{
"error": {
"type": "validation.malformed",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-malformed"
}
}{
"error": {
"type": "auth.invalid_key",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-invalid-key"
}
}{
"error": {
"type": "auth.disabled_tenancy",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-disabled-tenancy"
}
}{
"error": {
"type": "validation.not_found",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-not-found"
}
}{
"error": {
"type": "validation.conflict",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-conflict"
}
}{
"error": {
"type": "model.no_eligible_model",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#model-no-eligible-model"
}
}{
"error": {
"type": "budget.exceeded",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#budget-exceeded"
}
}{
"error": {
"type": "runtime.internal",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-internal"
}
}{
"error": {
"type": "runtime.runner_unavailable",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-runner-unavailable"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
2026-08-27 255Body
^agent_[0-9a-f]{32}$^env_[0-9a-f]{32}$Show child attributes
Show child attributes
50- Option 1
- Option 2
Show child attributes
Show child attributes
at most 16 correlation pairs with keys of 1 to 64 characters
Show child attributes
Show child attributes
- Option 1
- Option 2
- Option 3
Show child attributes
Show child attributes
^vlt_[0-9a-f]{32}$Response
BetaManagedAgentsSession
^sess_[0-9a-f]{32}$Show child attributes
Show child attributes
A canonical UTC ISO-8601 timestamp with millisecond precision.
24^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$Show child attributes
Show child attributes
A canonical UTC ISO-8601 timestamp with millisecond precision.
24^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$^env_[0-9a-f]{32}$at most 16 correlation pairs with keys of 1 to 64 characters
Show child attributes
Show child attributes
Show child attributes
Show child attributes
- Option 1
- Option 2
- Option 3
Show child attributes
Show child attributes
Show child attributes
Show child attributes
rescheduling, running, idle, terminated session A canonical UTC ISO-8601 timestamp with millisecond precision.
24^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$Show child attributes
Show child attributes
^vlt_[0-9a-f]{32}$^auto_[0-9a-f]{32}$