Resume a paused campaign. Held calls continue from where they left off; calls whose scheduled time passed during the pause are placed at the next available calling window.
Parameters
id: str
Returns
Resume a paused campaign
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.campaigns.resume(
"id",
)
print(response.success){
"success": true
}Returns Examples
{
"success": true
}