QuickBooks Integrator 2020 Python Edition

Questions / Feedback?

on_get_interactive_url Event

Fires when the URL for an interactive session is needed.

Syntax

class QBWCServerGetInteractiveURLEventParams(object):
  @property
  def session_ticket() -> str: ...
  @property
  def url() -> str: ...
  @url.setter
  def url(value) -> None: ...

# In class QBWCServer:
@property
def on_get_interactive_url() -> Callable[[QBWCServerGetInteractiveURLEventParams], None]: ...
@on_get_interactive_url.setter
def on_get_interactive_url(event_hook: Callable[[QBWCServerGetInteractiveURLEventParams], None]) -> None: ...

Remarks

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

If you set the InteractiveMode parameter in the on_get_last_error 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 Python Edition - Version 20.0 [Build 7941]