Retrieving customer details
Learn how to get a customer's details.
You can use the GET /v1/customers/{customerId}
resource to get a customer's details. You must provide either a customerId
or ERID
in the path.
The following example gets the details for a specific customer with a customerId
.
curl --location --request GET 'https://api.digitalriver.com/v1/customers/{customerId}' \
--header 'Authorization: Basic <API_key>' \
...
The following example gets the details for a specific customer with an ERID
and requires the x-erid-as-cid=true
header.The following example gets the details for a specific customer with an ERID
and requires the x-erid-as-cid=true
header.
curl --location --request GET 'https://api.digitalriver.com/v1/customers/{ERID}' \
--header 'Authorization: Basic <API_key>' \
--header 'header x-erid-as-cid=true' \
...
Last updated
Was this helpful?