QuickBooks Integrator 2020 .NET Edition

Questions / Feedback?

GetInteractiveURL Event

Fires when the URL for an interactive session is needed.

Syntax

public event OnGetInteractiveURLHandler OnGetInteractiveURL;

public delegate void OnGetInteractiveURLHandler(object sender, QbwcserverGetInteractiveURLEventArgs e);

public class QbwcserverGetInteractiveURLEventArgs : EventArgs {
  public string SessionTicket { get; }
  public string URL { get; set; }
}
Public Event OnGetInteractiveURL As OnGetInteractiveURLHandler

Public Delegate Sub OnGetInteractiveURLHandler(sender As Object, e As QbwcserverGetInteractiveURLEventArgs)

Public Class QbwcserverGetInteractiveURLEventArgs Inherits EventArgs
  Public ReadOnly Property SessionTicket As String
  Public Property URL As String
End Class

Remarks

This event fires when QuickBooks Web Connector requests the URL for an interactive session.

If you set the InteractiveMode parameter in the GetLastError event this event will then fire so that you may provide the URL for the interactive session. The available parameters are:

SessionTicket identifies the session.

URL specifies the URL for the interactive session on your site. This must be a secure (https://) URL.

Copyright (c) 2021 /n software inc. - All rights reserved.
QuickBooks Integrator 2020 .NET Edition - Version 20.0 [Build 7941]