Server SDKs
Build AI agents, control calls, send messages, and more
Get all verb names defined in the schema (e.g., "answer", "ai", "hangup").
"answer"
"ai"
"hangup"
None.
string[] — Array of verb names.
string[]
1import { SchemaUtils } from '@signalwire/sdk';23const schema = new SchemaUtils();4const verbs = schema.getVerbNames();5console.log(verbs); // ["answer", "ai", "hangup", "play", ...]