Call unhold

Puts both legs of the call to InCall state by ID.

def unhold

Code example 1 - Definition

Return value

If the answer is parsable, it will return a Response object, else it will return the HTTP get request's result.

Example

#get the active calls list
calls = OPS.list_active_calls '192.168.0.1', nil, 'admin', 'password'

#pick up the first call
call = calls[0]

if (call != nil)
call.hold
end

Code example 2 - Unhold a call

More information