🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
에이전트의 저장된 버전 목록을 조회합니다. 응답에는 버전 메타데이터만 포함되며, 스냅샷 본문은 에이전트 단건 조회에서 version=v{n}으로 확인합니다.
curl --request GET \
--url https://client-api.tryvox.co/v3/agents/{agent_id}/versions \
--header 'Authorization: Bearer <token>'{
"versions": [
{
"version": "<string>",
"is_production": true,
"created_at": 123,
"description": "<string>"
}
],
"total_count": 123
}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.
조직 API 키를 Authorization: Bearer <token> 형식으로 보냅니다.
agent_id로 반환되는 에이전트 UUID입니다.
Was this page helpful?
curl --request GET \
--url https://client-api.tryvox.co/v3/agents/{agent_id}/versions \
--header 'Authorization: Bearer <token>'{
"versions": [
{
"version": "<string>",
"is_production": true,
"created_at": 123,
"description": "<string>"
}
],
"total_count": 123
}