/n software 3-D Secure V2 C++ Edition

Questions / Feedback?

CardholderMobilePhone Property

The cardholder mobile phone number.

Syntax

ANSI (Cross Platform)
char* GetCardholderMobilePhone();
int SetCardholderMobilePhone(const char* lpszCardholderMobilePhone); Unicode (Windows) LPWSTR GetCardholderMobilePhone();
INT SetCardholderMobilePhone(LPCWSTR lpszCardholderMobilePhone);
@property (nonatomic,readwrite,assign,getter=cardholderMobilePhone,setter=setCardholderMobilePhone:) NSString* cardholderMobilePhone;
- (NSString*)cardholderMobilePhone;
- (void)setCardholderMobilePhone:(NSString*)newCardholderMobilePhone;
#define PID_SERVER_CARDHOLDERMOBILEPHONE 28

IPWORKS3DS_EXTERNAL void* IPWORKS3DS_CALL IPWorks3DS_Server_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
IPWORKS3DS_EXTERNAL int IPWORKS3DS_CALL IPWorks3DS_Server_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

""

Remarks

This field contains the mobile phone number provided by the cardholder.

Phone numbers must be specified in the following format: CountryCode-Subscriber (e.g. 1-1234567899)

The "-" is used to separate the "Country Code" and "Subscriber" sections. The values are then formatted according to the EMVCo specification (a JSON object) in the request like so:


  "homePhone": {
    "cc": "1",
    "subscriber": "1234567899"
  }

Data Type

String

Copyright (c) 2022 /n software inc. - All rights reserved.
/n software 3-D Secure V2 C++ Edition - Version 2.2 [Build 8318]