Server SDKs
Build AI agents, control calls, send messages, and more
Resets the document to an empty SWML structure ({ version: '1.0.0', sections: { main: [] } }).
{ version: '1.0.0', sections: { main: [] } }
This method takes no parameters.
this — The builder instance for method chaining.
this
1import { SwmlBuilder } from '@signalwire/sdk';23const builder = new SwmlBuilder();4builder.addVerb('answer', {});5builder.addVerb('play', { url: 'https://example.com/audio.mp3' });67builder.reset();8// Document is now empty: { version: '1.0.0', sections: { main: [] } }