Get help center article content
Fetches the Markdown source of a Leadtime documentation article.
How to use this endpoint:
- Call
GET /help-center/searchto find a matching article - Pass the returned
slugto this endpoint - Optionally set
languagetodeoren
What is returned:
- Stable slug
- Selected language
- Complete article Markdown
- Breadcrumb and sibling articles
- A fallback flag when the requested locale was unavailable
GET
/help-center/articleAuthorization
AuthorizationOAuth2 access token · headerrequiredScopes:
api:reador
AuthorizationBearer token (JWT) · headerrequiredQuery parameters
slugstringrequiredDocumentation slug from the search response.
languagestringPreferred response language. Defaults to `de`.
Allowed:
deenResponses
200Full help center article content
breadcrumbstring[]requiredcontentstringrequiredThe complete article Markdown for the selected language.
fallbackbooleanrequiredWhether the requested language was unavailable and the other locale was returned.
languagestringrequiredAllowed:
deensiblingsHelpCenterSiblingDto[]requiredShow propertiesHide properties
Array of
HelpCenterSiblingDtoslugstringrequiredtitlestringrequiredslugstringrequired401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
500Unexpected help center integration response
502Documentation article request failed upstream
503Help center integration is not configured on this server
Request
curl -X GET "https://leadtime.app/api/public/help-center/article?slug=administration%2Ftask-settings%2Fcustom-task-types" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"const response = await fetch("https://leadtime.app/api/public/help-center/article?slug=administration%2Ftask-settings%2Fcustom-task-types", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});import requests
response = requests.get(
"https://leadtime.app/api/public/help-center/article?slug=administration%2Ftask-settings%2Fcustom-task-types",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
},
)Response
{
"breadcrumb": [
"administration",
"task-settings"
],
"content": "---\ntitle: Benutzerdefinierte Aufgabentypen\n---\n\n...",
"fallback": false,
"language": "de",
"siblings": [
{
"slug": "administration/task-settings/task-statuses",
"title": "Task statuses"
}
],
"slug": "administration/task-settings/custom-task-types"
}Unauthorized - Invalid or missing authentication token
Forbidden - Insufficient API scopes or permissions
Unexpected help center integration response
Documentation article request failed upstream
Help center integration is not configured on this server