Customers
BulkRetrieveCustomers
Retrieves multiple customer profiles.
This endpoint takes a list of customer IDs and returns a map of responses.
post/v2/customers/bulk-retrieve
Request body
Example request
{
"customer_ids": [
"8DDA5NZVBZFGAX0V3HPF81HHE0",
"N18CPRVXR5214XPBBA6BZQWF3C",
"2GYD7WNXF7BJZW1PMGNXZ3Y8M8"
]
}Response
Success
Example response
{
"responses": {
"2GYD7WNXF7BJZW1PMGNXZ3Y8M8": {
"errors": [
{
"category": "INVALID_REQUEST_ERROR",
"code": "NOT_FOUND",
"detail": "Customer with ID `2GYD7WNXF7BJZW1PMGNXZ3Y8M8` not found."
}
]
},
"8DDA5NZVBZFGAX0V3HPF81HHE0": {
"customer": {
"birthday": "1897-07-24",
"created_at": "2024-01-19T00:27:54.59Z",
"creation_source": "THIRD_PARTY",
"email_address": "New.Amelia.Earhart@example.com",
"family_name": "Earhart",
"given_name": "Amelia",
"id": "8DDA5NZVBZFGAX0V3HPF81HHE0",
"note": "updated customer note",
"preferences": {
"email_unsubscribed": false
},
"updated_at": "2024-01-19T00:38:06Z",
"version": 3
}
},
"N18CPRVXR5214XPBBA6BZQWF3C": {
"customer": {
"created_at": "2024-01-19T00:27:54.59Z",
"creation_source": "THIRD_PARTY",
"family_name": "Curie",
"given_name": "Marie",
"id": "N18CPRVXR5214XPBBA6BZQWF3C",
"preferences": {
"email_unsubscribed": false
},
"updated_at": "2024-01-19T00:38:06Z",
"version": 1
}
}
}
}