Skip to content
Leadtime
English
Esc
navigateopen⌘Jpreview

List employee external calendar imports

Returns configured HTTPS ICS feeds that sync busy blocks into Leadtime for this employee.

GET/employees/{id}/external-calendar-feeds
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:api:read
or
AuthorizationBearer token (JWT) · headerrequired
Path parameters
idstringrequired
Responses
200
Array of ExternalCalendarFeedResponseDto
createdAtstringrequired
editedAtstringrequired
enabledbooleanrequired
idstringrequired
labelstring
lastErrorobject | null
lastFetchedAtobject | null
sourceUrlstringrequired
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
Request
curl -X GET "https://leadtime.app/api/public/employees/string/external-calendar-feeds" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response
[
  {
    "createdAt": "string",
    "editedAt": "string",
    "enabled": true,
    "id": "string",
    "label": "string",
    "lastError": {},
    "lastFetchedAt": {},
    "sourceUrl": "string"
  }
]