Customer Show


Returns the data of a specific customer

Type Method
GET https://assignment.sunergetic.nl/api/v1/customers/{id}

GET Headers

{
    "Accept"        : "application/json",
    "Content-Type"  : "application/x-www-form-urlencoded",
    "token"         : "{TOKEN}"
}

example response


{
    "data": {
            "id": 45,
            "email": "tdekeijser@erdogan.com",
            "firstname": "Simon",
            "lastname": "van der Meulen",
            "address": "Vermeulenbaan 178\n1339VJ Zuidwolde",
            "zipcode": "3439LB",
            "city": "Lucaswolde",
            "phone": "+316-75399935",
            "created_at": "2022-08-31T07:39:53.000000Z",
            "updated_at": "2022-08-31T07:39:53.000000Z"
        }
}