Server SDKs
Build AI agents, control calls, send messages, and more
Retrieve a top-level section from the prompt by its title string.
The section heading to retrieve.
PomSection | undefined — The matching section, or undefined if no section with that title exists.
PomSection | undefined
undefined
1import { PomBuilder } from '@signalwire/sdk';23const pom = new PomBuilder();4pom.addSection('Greeting', { body: 'Welcome the caller warmly.' });5const section = pom.getSection('Greeting');6console.log(section?.body); // "Welcome the caller warmly."