Skills
List Agent Skills
GET/workspaces/{workspaceId}/inbox/skills
Authorization
Path parameters
workspaceId*string
Query parameters
Response
A paginated list of agent skills.
Body
nextPageTokenstring
The token to fetch the next page of results. If empty, there are no more results to fetch.
results*array of AgentSkill (object)
Request
Response
Create Agent Skill
POST/workspaces/{workspaceId}/inbox/skills
Authorization
Path parameters
workspaceId*string
Body
name*string
description*string
valueType*AgentSkillValueType (enum)
AgentSkillValueType defines how can the Values of a Skill can be selected.
singlemultipleboolean
values*array of object
Response
The agent skill.
Body
id*string (uuid)
workspaceId*string (uuid)
name*string
description*string
valueType*AgentSkillValueType (enum)
AgentSkillValueType defines how can the Values of a Skill can be selected.
singlemultipleboolean
values*array of AgentSkillValue (object)
createdAt*string (date-time)
updatedAt*string (date-time)
createdBy*string (uuid)
updatedBy*string (uuid)
Request
Response
Get Agent Skill
GET/workspaces/{workspaceId}/inbox/skills/{agentSkillId}
Authorization
Path parameters
workspaceId*string
agentSkillId*string (uuid)
Response
The agent skill.
Body
id*string (uuid)
workspaceId*string (uuid)
name*string
description*string
valueType*AgentSkillValueType (enum)
AgentSkillValueType defines how can the Values of a Skill can be selected.
singlemultipleboolean
values*array of AgentSkillValue (object)
createdAt*string (date-time)
updatedAt*string (date-time)
createdBy*string (uuid)
updatedBy*string (uuid)
Request
Response
Update Agent Skill
PATCH/workspaces/{workspaceId}/inbox/skills/{agentSkillId}
Authorization
Path parameters
workspaceId*string
agentSkillId*string (uuid)
Body
namenullable string
descriptionnullable string
valueTypeAgentSkillValueType (enum)
AgentSkillValueType defines how can the Values of a Skill can be selected.
singlemultipleboolean
valuesarray of object
Response
The agent skill.
Body
id*string (uuid)
workspaceId*string (uuid)
name*string
description*string
valueType*AgentSkillValueType (enum)
AgentSkillValueType defines how can the Values of a Skill can be selected.
singlemultipleboolean
values*array of AgentSkillValue (object)
createdAt*string (date-time)
updatedAt*string (date-time)
createdBy*string (uuid)
updatedBy*string (uuid)
Request
Response
Delete Agent Skill
DELETE/workspaces/{workspaceId}/inbox/skills/{agentSkillId}
Authorization
Path parameters
workspaceId*string
agentSkillId*string (uuid)
Response
OK
Request
Response
Last updated