Reject a incoming call
Optional
The call ID, empty to reject the first one
[return description]
// Reject any incoming callWPP.call.reject();// Reject specific call idWPP.call.reject(callId);// Reject any incoming callWPP.on('call.incoming_call', (call) => { WPP.call.reject(call.id);}); Copy
// Reject any incoming callWPP.call.reject();// Reject specific call idWPP.call.reject(callId);// Reject any incoming callWPP.on('call.incoming_call', (call) => { WPP.call.reject(call.id);});
Reject a incoming call