RELAYActionsPlayActionresumeCopy page|View as Markdown|Open in Claude|More actionsResume paused playback from where it was paused. Returns dict — Server acknowledgment. Example 1from signalwire.relay import RelayClient23client = RelayClient(4 project="your-project-id",5 token="your-api-token",6 host="your-space.signalwire.com",7 contexts=["default"],8)910@client.on_call11async def handle_call(call):12 await call.answer()13 action = await call.play(14 [{"type": "audio", "url": "https://example.com/hold-music.mp3"}],15 loop=0,16 )1718 await action.pause()19 # ... do something ...20 await action.resume()2122client.run()