E-Payment Integrator 2020 C++ Edition

Questions / Feedback?

ReturnURL Property

URL to which the customer's browser is returned after choosing to pay with PayPal.

Syntax

ANSI (Cross Platform)
char* GetReturnURL();
int SetReturnURL(const char* lpszReturnURL); Unicode (Windows) LPWSTR GetReturnURL();
INT SetReturnURL(LPCWSTR lpszReturnURL);
@property (nonatomic,readwrite,assign,getter=returnURL,setter=setReturnURL:) NSString* returnURL;
- (NSString*)returnURL;
- (void)setReturnURL:(NSString*)newReturnURL;
#define PID_EXPRESSCHECKOUT_RETURNURL 57

INPAY_EXTERNAL void* INPAY_CALL InPay_ExpressCheckout_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
INPAY_EXTERNAL int INPAY_CALL InPay_ExpressCheckout_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

""

Remarks

This is the page to which a customer is returned after he pays through PayPal. The PayPal server will append to this ReturnURL a query string containing a token which identifies this transaction in the PayPal network. This token should be sent as the Token parameter in the GetCheckoutDetails method.

This property is required when calling the SetCheckout method.

Character length and limitations: no limit. Must be URL-encoded.

Data Type

String

Copyright (c) 2021 /n software inc. - All rights reserved.
E-Payment Integrator 2020 C++ Edition - Version 20.0 [Build 7941]