Skip to content
Get started

Pause a call

call.pause(id) -> CallPauseResponse { success }
POST/call/{id}/pause

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.

ParametersExpand Collapse
id: String
ReturnsExpand Collapse
class CallPauseResponse { success }
success: bool

Pause a call

require "revox"

revox = Revox::Client.new(api_key: "My API Key")

response = revox.call.pause("id")

puts(response)
{
  "success": true
}
Returns Examples
{
  "success": true
}