GET
/
work-locations
/
public
/
api
/
user-locations
/
{id}
curl --request GET \
  --url https://{host}/work-locations/public/api/user-locations/{id} \
  --header 'Authorization: <authorization>'
{
  "id": 123,
  "ownerId": 123,
  "workLocationId": 123,
  "areaId": 123,
  "date": "2023-12-25",
  "position": "FullDay",
  "status": "Pending"
}

Headers

Authorization
string
required

API key. Value must be formatted like so: lucca application={api_key}.

Path Parameters

id
integer
required

unique id of the userLocation

Required range: x >= 1

Response

200
application/json

OK

Represents the association of an employee and a workLocation on a given date and position in the day.