Skip to main content
GET
/
alpha
/
merchant
/
customers
/
{customerId}
Get customer by ID
curl --request GET \
  --url https://api.auctionnow.io/api/alpha/merchant/customers/{customerId} \
  --header 'Authorization: <authorization>'
{
  "data": {
    "_id": "<string>",
    "_creationTime": 123,
    "email": "<string>",
    "name": "<string>",
    "userId": "<string>",
    "stripeCustomerId": "<string>"
  },
  "timestamp": 123,
  "message": "<string>"
}

Headers

Authorization
string
required

Your Auction Now API key as a Bearer token

Example:

"Bearer ak_XXXXXXX"

Path Parameters

customerId
string
required

The unique ID of the customer

Response

Customer details

data
object
required

The customer record

timestamp
number
required
message
string