Pause a call's retry loop. The current in-progress attempt (if any) will finish, but no new attempts will be started until the call is resumed.
Parameters
id: str
Returns
Pause a call
import os
from revox import Revox
client = Revox(
api_key=os.environ.get("REVOX_API_KEY"), # This is the default and can be omitted
)
response = client.call.pause(
"id",
)
print(response.success){
"success": true
}Returns Examples
{
"success": true
}