stop

View as MarkdownOpen in Claude

Stop the play-and-collect operation.

Returns

Promise<Record<string, unknown>> — Server acknowledgment.

Example

import { RelayClient } from '@signalwire/sdk';
const client = new RelayClient({
project: process.env.SIGNALWIRE_PROJECT_ID!,
token: process.env.SIGNALWIRE_API_TOKEN!,
contexts: ['default']
});
client.onCall(async (call) => {
await call.answer();
const action = await call.playAndCollect(
[{ type: 'tts', text: 'Press 1 for sales, 2 for support.' }],
{ digits: { max: 1, digit_timeout: 5.0 } },
);
// Cancel the operation
await action.stop();
});
await client.run();