Skip to main content
GET
/
Customer
/
{customerId}
/
LastLogin
cURL
curl --request GET \
  --url https://api.trysynch.com/Customer/{customerId}/LastLogin \
  --header 'Authorization: Bearer <token>'
{
  "customer_id": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "phone": "<string>",
  "last_authentication_time": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Use /auth/token to obtain access token. Enter 'Bearer' [space] and then your token in the text input below. Example: 'Bearer eyJhbGci...'

Path Parameters

customerId
string<uuid>
required

Response

OK

customer_id
string
first_name
string
last_name
string
phone
string | null
last_authentication_time
string<date-time>