Agents
Agent related APIs
0
100
Optional: Email of the agent to use for this request
Optional: Email address to associate with the user
Optional: User ID to identify or create a user
알겠습니다.
GET /webapi/v2/agents HTTP/1.1
Host: backend.alli.ai
API-KEY: YOUR_API_KEY
Accept: */*
알겠습니다.
{
"agents": [
{
"id": "text",
"lastName": "text",
"firstName": "text",
"email": "text"
}
]
}
Optional: Email of the agent to use for this request
Optional: Email address to associate with the user
Optional: User ID to identify or create a user
싱글액션 앱 도구를 성공적으로 검색했습니다.
GET /webapi/agent_builder/single_action_app_tools HTTP/1.1
Host: backend.alli.ai
API-KEY: YOUR_API_KEY
Accept: */*
싱글액션 앱 도구를 성공적으로 검색했습니다.
{
"tools": [
{
"id": "text",
"name": "text",
"display_name": "text",
"description": "text",
"single_action_inputs": [
{
"name": "text",
"type": "text",
"description": "text"
}
]
}
]
}
Name of the tool to retrieve
Optional: Email of the agent to use for this request
Optional: Email address to associate with the user
Optional: User ID to identify or create a user
싱글액션 앱 도구를 성공적으로 검색했습니다.
도구를 찾을 수 없습니다.
GET /webapi/agent_builder/single_action_app_tool/{tool_name} HTTP/1.1
Host: backend.alli.ai
API-KEY: YOUR_API_KEY
Accept: */*
{
"success": true,
"tool": {
"id": "text",
"name": "text",
"display_name": "text",
"description": "text",
"single_action_inputs": [
{
"name": "text",
"type": "text",
"description": "text"
}
]
}
}
프로젝트에서 에이전트를 생성 및 삭제하는 데 사용됨
Optional: Email of the agent to use for this request
Optional: Email address to associate with the user
Optional: User ID to identify or create a user
생성하거나 삭제하려는 에이전트의 이메일
에이전트를 삭제하려면 True, 생성하려면 False
새 에이전트를 만들 때 필요합니다. 비밀번호는 유효해야 합니다 (소문자, 대문자, 숫자, 비알파벳 문자 중 4개 중 3개를 포함해야 함).
생성 중인 계정의 언어 설정. 두 글자 ISO 639-1 코드를 사용해 주세요.
에이전트에게 할당할 권한 그룹의 ID
에이전트에게 할당할 권한 그룹 이름
에이전트가 성공적으로 수정되었습니다.
잘못된 매개변수
에이전트를 찾을 수 없습니다.
POST /webapi/agent_management HTTP/1.1
Host: backend.alli.ai
API-KEY: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 128
{
"email": "text",
"deleteFlag": true,
"password": "text",
"locale": "text",
"permission_group_id": "text",
"permission_group_name": "text"
}
{
"result": {
"id": "text",
"status": "text"
}
}
Was this helpful?