Server SDKs
Build AI agents, control calls, send messages, and more
Get the agent’s display name as set at construction time.
None.
string — The agent name.
string
1import { AgentBase } from '@signalwire/sdk';23const agent = new AgentBase({ name: 'support', route: '/support' });4console.log(agent.getName()); // "support"