GET
/
customers
/
{id}
Retrieve a Customer
curl --request GET \
  --url https://commerce.driv.ly/api/customers/{id}
{
  "data": {
    "id": "<string>",
    "addresses": [
      "<string>"
    ],
    "phoneNumbers": [
      "<string>"
    ]
  },
  "success": true
}

Path Parameters

id
string
required

Customer is uniquely identified by id

Query Parameters

depth
integer

The number of levels of related objects to include in the response

Response

Customer Found

data
object
success
boolean