Skip to main content
PUT
/
v1
/
click2pay
/
VISA
/
update
/
customer
/
{customerId}
Update Cardholder by Cardholder ID in C2P
curl --request PUT \
  --url 'https://integration-api-cat2.{{environment}}.ext.{{realm}}.cia.enfuce.com/wallet/v1/click2pay/VISA/update/customer/{customerId}' \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customerBID": "123456",
  "overrides": {
    "emails": [
      "alex123@hotmail.com"
    ],
    "phones": [
      "16504005555"
    ]
  }
}
'
{
  "requestTraceId": "351562ba-83cf-11ee-b962-0242ac120002"
}

Documentation Index

Fetch the complete documentation index at: https://docs.enfuce.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

customerId
string<biginteger>
required

The cardholder id of which cardholder you want to update.

Query Parameters

auditUser
string
required

The audit user to log the request.

Body

application/json
customerBID
string
required

Unique identifier assigned to each issuer. Note: If you are using our BIN sponsorship, we provide you the customerBID; else, Visa provides you the customerBID.

Example:

"123456"

overrides
object

Customer overrides are used to override the customer information that is stored in the Visa C2P.

Response

Accepted

requestTraceId
string<uuid>
required

Unique identifier of the request

Required string length: 36
Example:

"351562ba-83cf-11ee-b962-0242ac120002"