IdDetails
Get Customer
Get a customer from the customer GUID. Authorise with a JWT
GET
/v1/customers/{id}/details
AuthorizationBasic <token>
Basic Authorization header using the Bearer scheme.
In: header
Authorization<token>
JWT Authorization header using the Bearer scheme.
In: header
Path Parameters
idstring
Response Body
curl -X GET "https://loading/v1/customers/string/details"
{
"title": "string",
"firstName": "string",
"lastName": "string",
"emailAddress": "string",
"mobileNumber": "string",
"dob": "2019-08-24T14:15:22Z",
"storeId": 0,
"subscribed": true,
"customerGuid": "string"
}
{
"message": "string",
"code": 0
}
{
"succeeded": true,
"errors": [
{
"message": "string"
}
]
}
How is this guide?