Skip to main content
PUT
/
procedural_agents
/
{id}
Update a procedural agent
curl --request PUT \
  --url https://api.operator.xyz/procedural_agents/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Operator-Version: <operator-version>' \
  --data '{
  "name": null
}'
{
  "id": "<string>",
  "version_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Operator-Version
enum<string>
required

The API version to use.

Available options:
2025-06-19

Path Parameters

id
string
required

The ID of the procedural agent to update. Use pa_8qm9JBCiTe7 for the latest version, or pa_8qm9JBCiTe7@v2 for a specific version.

Body

application/json
name
string

Human-readable name for the procedural agent.

description
string

Description of the procedural agent.

config
procedural.agent.config · object

Full configuration for the procedural agent (e.g. runtime, tools, output).

Response

Successful response.

id
string
required

Unique identifier for the procedural agent, e.g. pa_8qm9JBCiTe7

version_id
string
required

Version-specific identifier for the draft representing the new procedural agent instance, e.g. pa_8qm9JBCiTe7@v1. Can be further passed to the release API endpoint.