- 概述
- 认证
- 智能体(Agent)
- 对话(Conversation)
- 语音(Voice)
- 形象(Avatar)
- 工具(Tool)
- 知识库(Datastore)
- 身份
- 自主任务
- 创建智能体POST
- 修改智能体信息PATCH
- 删除给定智能体DELETE
- 获取智能体列表GET
- 获取指定智能体GET
- 形象(Avatar)
- 声音(Voice)
- 凭证(Credentials)
- 身份(Identity)
- 模型(Model)
- 数据集(Datastore)
- 提示词(Prompt)
- 数据源(Datasource)
- 集成(Integration)
- 图像(Image)
- 工具(Tool)
- 工具集(Toolkit)
- 流程(Flow)
给智能体解绑身份
开发中
DELETE
/agents/{agent_id}/identities/{identity_id}
请求参数
Path 参数
agent_id
string
智能体ID
示例值:
{% mock 'guid' %}
identity_id
string
身份ID
示例值:
{% mock 'guid' %}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request DELETE 'https://api.openbot.chat/openapi/v1/agents/{% mock '\''guid'\'' %}/identities/{% mock '\''guid'\'' %}'
返回响应
🟢200成功
application/json
Body
id
string
身份id
provider
string
身份提供者
user_id
string
平台用户ID
name
string
名称
image
string
头像
access_token
string
必需
created_at
string
创建时间
updated_at
string
更新时间
示例
{
"id": "string",
"provider": "string",
"user_id": "string",
"name": "string",
"image": "string",
"access_token": "string",
"created_at": "string",
"updated_at": "string"
}
修改于 2023-05-21 12:48:55