stop
Stop the fax operation.
Returns
dict — Server acknowledgment.
Example
from signalwire.relay import RelayClientclient = RelayClient(project="your-project-id",token="your-api-token",contexts=["default"],)@client.on_callasync def handle_call(call):await call.answer()action = await call.send_fax(document="https://example.com/invoice.pdf",identity="+15559876543",)# Stop the fax operationawait action.stop()client.run()