List Codexgate Scenarios
GET
/v1/admin/codexgate/scenarios
const url = 'https://example.com/v1/admin/codexgate/scenarios';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/admin/codexgate/scenariosParameters
Section titled “Parameters”Header Parameters
Section titled “Header Parameters”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
CodexGateScenarioListOut
object
items
Items
Array<object>
CodexGateScenarioOutobject
scenario_key
required
Scenario Key
string
title
required
Title
string
domain
Domain
string
pack_key
Pack Key
string
asset_kind
Asset Kind
string
entrypoint
Entrypoint
string
objective
Objective
string
operator_prompt
Operator Prompt
string
probe_steps
Probe Steps
Array<object>
CodexGateProbeStepobject
action
required
Action
string
name
Name
string
path
Path
string
selector
Selector
string
text
Text
string
value
Value
string
budget_ms
Budget Ms
integer
optional
Optional
boolean
expected_output
Expected Output
string
signal_kinds
Signal Kinds
Array<string>
gitops_surface
Gitops Surface
string
expected_artifacts
Expected Artifacts
Array<string>
codex_prompt_template
Codex Prompt Template
string
acceptance_contract
Acceptance Contract
string
evaluation_focus
Evaluation Focus
Array<string>
tags
Tags
Array<string>
priority
Priority
string
requires_playwright
Requires Playwright
boolean
total
Total
integer
Example
{ "items": [ { "domain": "", "pack_key": "", "asset_kind": "", "entrypoint": "", "objective": "", "operator_prompt": "", "probe_steps": [ { "action": "goto", "name": "", "path": "", "selector": "", "text": "", "value": "", "budget_ms": 0, "optional": false } ], "expected_output": "", "gitops_surface": "", "codex_prompt_template": "", "acceptance_contract": "", "evaluation_focus": [ "practicality" ], "priority": "standard", "requires_playwright": true } ], "total": 0}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}