Skip to main content

When a one-to-one call ends, the IM system automatically sends this message to the corresponding private conversation to identify the call record. The call-end message (CallFinishNotifyMessage) has the contentType value jg:callfinishntf.

PropertyTypeDescriptionVersion
finishNotifyTypeCallFinishNotifyTypeCall-end type1.8.2
durationlongCall duration (ms).1.8.2
mediaTypeCallMediaTypeCall type.1.8.2
public enum CallFinishNotifyType {
/// caller canceled
CANCEL(0),
/// callee rejected
REJECT(1),
/// callee did not answer
NO_RESPONSE(2),
/// call ended
COMPLETE(3);
}