currentCallID()

Note: This API is supported from version 10.0.0.

The currentCallID() retrieves the conversation ID of the current ongoing call.

Returns

  • String: ID of the conversation.

Example

Copiedif let callID = ZohoSalesIQCalls.currentCallID {
    print("Current Call ID: \(callID)")
} else {
    print("No active call.")
 }