Manage Consumer Information
The Manage Consumer Information endpoint enables you to update consumer information created from the Enroll Data endpoint.
You can update consumer information by making a PUT request to the Manage Consumer Information endpoint. For example:
{{base-url}}/ctp/api/v1/consumerinformationThe request must consist of all fields, including any fields that do not require updating. If a field is missing from the request, the request fails.
See the below example of a request body.
{
"customerDetails": {
"nationalIdentifiers": [
{
"type": "PASSPORT",
"value": "A123456"
}
],
"customerReferenceId": "63421837-d597-4f0f-89e4-930c1a7b9e85",
"email": "[email protected]",
"phone": "16504005555",
"firstName": "Alex",
"middleName": "Robert",
"lastName": "Miller",
"countryCode": "USA",
"languageCode": "en"
},
"cardNetwork": "Visa"
}If successful, a 202 response is returned with a unique requestTraceId when the card network is VISA, and a unique srcCorrelationId when the card network is Mastercard.
{
"requestTraceId": "351562ba-83cf-11ee-b962-0242ac120002"
}{
"srcCorrelationId": "b17b686c-4759-4ade-a3b1-6b29c61b6774"
}
Information
- To view this endpoint in the API Explorer, see Manage Consumer Information.
- To view information on the fields for this endpoint, see Manage Consumer Information - Field Descriptions.
Updated 9 days ago
