This class gives API access to the currently active conversation.

As long as a conversation is active one can register and receive the events provided by this class and call the methods. Once the conversation is closed this API object will be destroyed and no more event callbacks will be called. Any subsequent calls will fail.

Use the CLOSE event to de-init any code connected to this conversation.

Hierarchy

  • Conversation

Methods

  • Closes this conversation locally.

    When called, the connection to this conversation is closed and the overview is displayed.

    Note that:

    • Closing does NOT end the conversation.
    • The person does NOT leave the conversation.
    • All Conversation api instances for this conversation will be destroyed.

    The conversation can be joined again either via the UI or using UnbluApi.openConversation.

    Returns Promise<void>

    A Promise that resolves to null or is rejected with a UnbluApiError if the call fails.

    See

    • CLOSE fired after this call.
    • endConversation for details on ending a conversation.
    • leavingConversation for details on leaving a conversation.
    • destroy for details on destroying a conversation.
  • Creates a new EMail invitation for this conversation.

    Parameters

    • email: String

      The email which the invitation should be send. It must be a valid email address.

    Returns Promise<Invitation>

    A promise that resolves to a new Invitation object with all relevant metadata. or is rejected with a UnbluApiError if the call fails.

    See

    INVITATIONS_CHANGE If you need to listen to changes for new invitations on this conversation.

  • Creates a new PIN invitation for this conversation.

    Returns Promise<Invitation>

    A promise that resolves to a new Invitation object with all relevant metadata. or is rejected with a UnbluApiError if the call fails.

    See

    INVITATIONS_CHANGE if you need to listen to changes for new invitations on this conversation.

  • Destroys this conversation API instance.

    Calling destroy will unregister all event listeners and prohibit any further calls to this object. Once the conversation is destroyed, any subsequent calls will reject the returned promise with UnbluErrorType.ILLEGAL_STATE as the reason.

    Note that:

    • Destroying does NOT close the conversation .
    • Destroying does NOT end the conversation.
    • Destroying does NOT leave the conversation.
    • Other instances of the same Conversation will NOT be destroyed.

    This call simply destroys this local API instance to the conversation.

    A destroyed but still open conversation can be accessed again using UnbluApi.getActiveConversation.

    Returns void

    See

  • Ends and closes this conversation.

    If the local person doesn't have the right to end the conversation, the returned promise will be rejected with the unblu error type UnbluErrorType.ACTION_NOT_GRANTED.

    Returns Promise<void>

    A Promise that resolves to null or is rejected with a UnbluApiError if the call fails.

    See

  • Returns Promise<CallState>

    A promise that resolves to the current call state of the local user or is rejected with a UnbluApiError if the call fails.

    See

    CALL_STATE_CHANGE if you need to listen to changes.

  • Returns the current connection state the conversation is in.

    If the connection is lost, the conversation will automatically try to reconnect using an exponential back-off strategy. If a fatal error is detected, the state will change to ConnectionState.ERROR.

    If this happens, the conversation is in it's terminal state. A dialog or other UI will be displayed to the user with details on the failure. The conversation is not automatically closed in this case. It may either be closed through a manual action by the visitor (confirming the error) or via the API.

    Returns Promise<ConnectionState>

    A promise that resolves to the current connection state of the conversation or is rejected with a UnbluApiError if the call fails.

    See

    CONNECTION_STATE_CHANGE if you need to listen to changes.

  • Returns the ID of this conversation.

    Returns string

  • Returns the current state the conversation is in.

    Returns Promise<ConversationState>

    A promise that resolves to the current state of the conversation or is rejected with a UnbluApiError if the call fails.

  • Get all visitor invitations created by the local person for this conversation.

    Returns Promise<Invitation[]>

    A promise that resolves to a new Invitation array with all relevant metadata. or is rejected with a UnbluApiError if the call fails.

  • Returns weather this conversation is destroyed or not.

    Conversations are destroyed if destroy is called or the conversation is closed. This usually happens when the user navigates back to an overview or into an other conversation.

    Returns boolean

    Weather this conversation is destroyed or not.

  • Leaves and closes this conversation.

    By leaving, the visitor is removed from the active participant list of the conversation. Once a conversation is left, the visitor can not re-open it. It will not be visible in the conversation history either.

    If the local person doesn't have the right to leave the conversation, the returned promise will be rejected with the unblu error type UnbluErrorType.ACTION_NOT_GRANTED.

    Returns Promise<void>

    A Promise that resolves to null or is rejected with a UnbluApiError if the call fails.

    See

  • Removes a previously registered listener.

    Parameters

    • event: ConversationEventType

      The event to unregister from.

    • listener: Listener

      The listener to remove.

    Returns boolean

  • Registers an event listener for the given event.

    Parameters

    • event: "connectionStateChange"

      The call state change event.

    • listener: ConnectionStateListener

      The listener to be called.

    Returns void

  • Registers an event listener for the given event.

    Parameters

    • event: "conversationStateChange"

      The conversation state change event.

    • listener: ConversationStateListener

      The listener to be called.

    Returns void

  • Registers an event listener for the given event.

    Parameters

    • event: "callStateChange"

      The call state change event.

    • listener: CallStateListener

      The listener to be called.

    Returns void

  • Registers an event listener for the given event.

    Parameters

    • event: "end"

      The end event.

    • listener: (() => void)

      The listener to be called.

        • (): void
        • Returns void

    Returns void

    Deprecated

    The end event is not always available, depending on the configuration. Use instead CONVERSATION_STATE_CHANGE event.

    See

    END

  • Registers an event listener for the given event.

    Parameters

    • event: "close"

      The close event.

    • listener: (() => void)

      The listener to be called.

        • (): void
        • Returns void

    Returns void

    See

    CLOSE

  • Registers an event listener for the given event.

    Parameters

    • event: "invitationsChange"

      The invitations change event.

    • listener: InvitationsListener

      The listener to be called.

    Returns void

  • Registers an event listener for the given event.

    Parameters

    Returns void

  • Renews an invitation PIN if the invitation is expired.

    Parameters

    • invitationId: String

      The invitation id.

    Returns Promise<Invitation>

    A promise that resolves to a new Invitation object with all relevant metadata.

  • Revoke an invitation.

    Parameters

    • invitationId: String

      The invitation id.

    Returns Promise<void>

    A Promise that resolves to null or is rejected with a UnbluApiError if the call fails.

  • Set custom visitor data on the conversation.

    Parameters

    • visitorData: String

      Custom data for the visitor in any format.

    Returns Promise<void>

  • Starts a voice call in this conversation.

    • If a call is already active, this call will be ignored.
    • If the local person doesn't have the right to start a voice call, the returned promise will be rejected with the unblu error type UnbluErrorType.ACTION_NOT_GRANTED.

    Returns Promise<void>

    A Promise that resolves to null or is rejected with a UnbluApiError if the call fails.

    See

    CALL_STATE_CHANGE If you need to listen to changes.

  • Starts a video call in this conversation.

    • If a call is already active, this call will be ignored.
    • If the local person doesn't have the right to start a video call, the returned promise will be rejected with the unblu error type UnbluErrorType.ACTION_NOT_GRANTED.

    Returns Promise<void>

    A Promise that resolves to null or is rejected with a UnbluApiError if the call fails.

    See

    CALL_STATE_CHANGE If you need to listen to changes.

Events

CALL_STATE_CHANGE: "callStateChange" = 'callStateChange'

Event emitted when the CallState of this conversation changes. callStateChange

See

on for listener registration

CLOSE: "close" = 'close'

Event emitted when the conversation is closed.

This may happen due to a UI-navigation or an API-call.

close

See

on for listener registration

CONNECTION_STATE_CHANGE: "connectionStateChange" = 'connectionStateChange'

Event emitted when the ConnectionState of this conversation changes. connectionStateChange

See

on for listener registration

CONVERSATION_STATE_CHANGE: "conversationStateChange" = 'conversationStateChange'

Event emitted when the ConversationState of this conversation changes. conversationStateChange

See

on for listener registration

CUSTOM_ACTION_INVOCATION: "customActionInvocation" = 'customActionInvocation'

Event emitted every time a custom action is configured to trigger a JS API event for the current client when a custom action is invoked

customActionInvocation

See

END: "end" = 'end'

Event emitted when the conversation ends.

Deprecated

The end event is not always available, depending on the configuration. Use the CONVERSATION_STATE_CHANGE event instead. end

See

on for listener registration

INVITATIONS_CHANGE: "invitationsChange" = 'invitationsChange'

Event emitted when an Invitation is added to or removed from this conversation, or if an existing invitation changes. The event emits an array of all visitor invitations created by the local person, all other invitations will not be present. invitationsChange

See

on for listener registration