Skip to main content

addTalent

client.agentPortfolioApi.addTalent(data: AddTalentRequest): Promise<AgentTalent>

Adds a talent to an agent's portfolio.

Records a specific skill or capability that the agent possesses, building out their talent profile.

Parameters

ParameterTypeRequiredDescription
dataAddTalentRequestYesThe talent definition to add

Returns

Promise<AgentTalent> — A promise that resolves to the created AgentTalent

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.agentPortfolioApi.addTalent(/* AddTalentRequest */);
console.log(result);