Skip to main content
POST
/
agents
/
{agent_id}
/
versions
에이전트 버전 생성
curl --request POST \
  --url https://client-api.tryvox.co/v3/agents/{agent_id}/versions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "version": "<string>",
  "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": 123,
  "description": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.tryvox.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

조직 API 키를 Authorization: Bearer <token> 형식으로 보냅니다.

Path Parameters

agent_id
string<uuid>
required

agent_id로 반환되는 에이전트 UUID입니다.

Body

application/json

선택적 버전 메모입니다. 서버는 에이전트의 현재 dataflow_data를 스냅샷으로 저장합니다.

버전 생성 요청입니다. description만 선택 필드이며, body 자체도 생략할 수 있습니다.

description
string | null

사람이 읽을 수 있는 설명입니다.

Maximum string length: 500

Response

성공 응답

에이전트 버전 생성 응답입니다.

version
string
required

버전 식별자입니다.

Pattern: ^v[1-9][0-9]*$
Example:

"v1"

agent_id
string<uuid>
required

에이전트 UUID입니다.

created_at
integer
required

리소스 생성 시각입니다. unix milliseconds 형식입니다.

description
string | null

사람이 읽을 수 있는 설명입니다.