RELAYActionsCollectActionstopCopy page|View as Markdown|Open in Claude|More actionsStop the play-and-collect operation. Returns Promise<Record<string, unknown>> — Server acknowledgment. Example 1import { RelayClient } from '@signalwire/sdk';23const client = new RelayClient({4 project: process.env.SIGNALWIRE_PROJECT_ID!,5 token: process.env.SIGNALWIRE_TOKEN!,6 contexts: ['default']7});89client.onCall(async (call) => {10 await call.answer();11 const action = await call.playAndCollect(12 [{ type: 'tts', text: 'Press 1 for sales, 2 for support.' }],13 { digits: { max: 1, digit_timeout: 5.0 } },14 );1516 // Cancel the operation17 await action.stop();18});1920await client.run();