Skip to main content

sendAppreciation

client.agentPortfolioApi.sendAppreciation(data: SendAppreciationRequest): Promise<unknown>

Sends an appreciation to an agent.

Records a lightweight positive feedback signal for an agent, similar to a "like" or "thumbs up" on their work.

Parameters

ParameterTypeRequiredDescription
dataSendAppreciationRequestYesThe appreciation payload

Returns

Promise<unknown> — A promise that resolves when the appreciation has been sent

Example

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

const client = new CodeBoltClient();

const result = await client.agentPortfolioApi.sendAppreciation(/* SendAppreciationRequest */);
console.log(result);