Update Contact Info Response
The response returned after successfully updating the extended user's contact information, such as their email address
or mobile number
.
customerIdstringrequired
Wallet customer identifier.
Example:
5435323362
typeExtended Contact Information Type (string)required
The type of extended contact information attribute undergoing verification through an added secure method, like an OTP code sent by email.
EMAIL
- The email address connected to the customer’s profile.MOBILE
- The phone number registered with the customer’s account.
Possible values: [EMAIL
, MOBILE
]
Example:
EMAIL
valuestringrequired
The value of the contact information attribute that will be verified through an additional secure mechanism, such as an OTP code sent via email.
Example:
john.doe@example.com
statusExtended Contact Information Attribute Status (string)required
The status of the extended contact information attribute.
VERIFIED
- The customer attribute has been successfully verified.NOT_VERIFIED
- The customer attribute has not been verified yet.
Possible values: [VERIFIED
, NOT_VERIFIED
]
Example:
VERIFIED
creationTimedate-timerequired
Represents RFC 3339, section 5.6 date-time.
Example:
2021-07-15T17:54:12Z
Update Contact Info Response
{
"customerId": "5435323362",
"type": "EMAIL",
"value": "john.doe@example.com",
"status": "VERIFIED",
"creationTime": "2021-07-15T17:54:12Z"
}