QuickBooks Integrator 2020 C++ Edition

Questions / Feedback?

GetInteractiveURL Event

Fires when the URL for an interactive session is needed.

Syntax

ANSI (Cross Platform)
virtual int FireGetInteractiveURL(QBWCServerGetInteractiveURLEventParams *e);
typedef struct {
const char *SessionTicket;
char *URL; int reserved; } QBWCServerGetInteractiveURLEventParams; Unicode (Windows) virtual INT FireGetInteractiveURL(QBWCServerGetInteractiveURLEventParams *e);
typedef struct {
LPCWSTR SessionTicket;
LPWSTR URL; INT reserved; } QBWCServerGetInteractiveURLEventParams;
- (void)onGetInteractiveURL:(NSString*)sessionTicket :(NSString**)URL;
#define EID_QBWCSERVER_GETINTERACTIVEURL 6

virtual INT INQB_CALL FireGetInteractiveURL(LPSTR &lpszSessionTicket, LPSTR &lpszURL);

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 C++ Edition - Version 20.0 [Build 7941]