agents

Create an Agent.

Create a new Agent with a name and optional public visibility. The Agent will be assigned a unique ID.

post/v1/agents

Request body

namestring required

The name of the Agent.

versionstring required

The version of the Agent. Must be a semver string (e.g., '2.0.65') or a SHA.

Response

Agent created successfully. Returns the Agent with metadata.

idstring required

The unique identifier of the Agent.

namestring required

The name of the Agent.

versionstring required

The version of the Agent. A semver string (e.g., '2.0.65') or a SHA.

create_time_msinteger required

The creation time of the Agent (Unix timestamp milliseconds).

is_publicboolean required

Whether the Agent is publicly accessible.

Changes