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/consumerinformation

The 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