Search articles
Search help-center articles by structured filters and/or hybrid full-text search, with sort and cursor pagination.
This endpoint mirrors POST /v2/conversations/search. Two modes, dispatched off whether you pass search:
- Filter mode (no
search): the structuredqueryAST is translated to a Mongo predicate and paginated bysort+ cursor. Same semantics asPOST /v2/companies/searchandPOST /v2/contacts/search. - Search mode (
searchset): the free-text query runs as a hybrid (vector + BM25) search against the same article namespace the help-center copilot uses. Hits are then survivor-pruned in Mongo against the structuredqueryAST andorganizationId.
query and search are independent and may be combined freely. An empty body lists everything for the org.
Hybrid full-text search (search)
{ "search": "how to set up sso" }
- Free-form text, 1–500 chars. Server-managed: no operators, no field selection.
- Hybrid (vector embedding + BM25 keyword) ranking. Results are returned in relevance order unless you also pass
sort, in which case the relevance-matched survivor set is reordered along that axis. - Top 200 ranked articles are kept per request and paginated in-memory; the same ranking is stable across pages.
- May be combined with
queryto scope (e.g.search+{ help_center_id = "..." }).
Structured query AST
Each clause has the shape { field, operator, value }. You can pass a single clause or wrap up to 15 in a top-level AND group:
{
"query": {
"operator": "AND",
"value": [
{ "field": "help_center_id", "operator": "=", "value": "j7c5g8ah3ewxp4lo" },
{ "field": "state", "operator": "=", "value": "draft" },
{ "field": "updated_at", "operator": ">", "value": 1735689600 }
]
},
"sort": "updated_at:desc",
"limit": 20
}
Top-level OR groups and nested groups are not supported in this version.
Supported AST fields and operators
| Field | Type | Operators |
|---|---|---|
id | string (article id) | =, !=, IN, NIN |
help_center_id | string | =, !=, IN, NIN |
parent_id | string (collection id) | =, !=, IN, NIN |
author_id | string | =, !=, IN, NIN |
slug | string | =, !=, IN, NIN |
state | enum (live | draft) | =, !=, IN, NIN |
created_at | unix seconds | =, !=, >, <, >=, <= |
updated_at | unix seconds | =, !=, >, <, >=, <= |
There is no AST-level full-text field. The string operators ~, !~, ^, $ are reserved for future structured-text use and currently return 400 - use the top-level search sibling for free-text matching.
state is derived from each help center’s default-locale translation: state = "live" matches articles with a published live translation in their HC’s default locale; state = "draft" matches the draft equivalent. Same semantics as the state query param on GET /v2/help_center/articles.
Sort
Allowed values: created_at:desc (default in filter mode), created_at:asc, updated_at:desc, updated_at:asc.
In search mode, omitting sort returns results in relevance order. Passing sort reorders the relevance survivor set chronologically.
The chosen mode + sort axis is encoded in the cursor; switching mode or axis mid-pagination returns 400 invalid_cursor. Restart pagination without a cursor when changing.
Pagination
Cursor-based, limit between 1 and 100 (default 10). In filter mode, totalCount is approximate and capped at 5 000. In search mode, totalCount is exact within the 200-row top-K window and totalCountCapped is true when that cap is hit.
Response
Returns a standard list envelope with article rows identical to GET /v2/help_center/articles/{id} (including translations, hydrated against each article’s parent help center default locale).
Version Availability
This endpoint is only available in API version 2026-01-01.nova and newer.
Body ParametersJSON
An opaque cursor for pagination. Use the nextCursor value from a previous response to fetch the next page of results. The pagination keyset (relevance score in search mode, sort-axis value in filter mode) is encoded in the cursor; switching mode mid-pagination returns 400 invalid_cursor.
A limit on the number of objects to be returned, between 1 and 100.
Plain-text full-text search across article title, description, and body. Hybrid (vector + BM25) ranking via the same Turbopuffer namespace the help-center copilot uses - server-managed, no operators, no field selection. When set, results come back ranked by relevance unless sort is also passed (in which case the relevance-matched set is reordered along that axis).
Search articles
curl https://do.featurebase.app/v2/help_center/articles/search \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $FEATUREBASE_API_KEY" \
-d '{
"cursor": "eyJpZCI6IjUwN2YxZjc3YmNmODZjZDc5OTQzOTAxMSJ9",
"limit": 10,
"search": "how to set up sso",
"sort": "created_at:desc"
}'{
"data": [
{
"id": "1234567",
"availableLocales": [
"en",
"de"
],
"createdAt": "2024-10-18T12:33:09.099Z",
"helpCenterId": "j7c5g8ah3ewxp4lo",
"locale": "en",
"object": "article",
"organization": "6595518396205e06b897ad65",
"state": "live",
"updatedAt": "2024-10-18T13:03:25.921Z",
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"defaultLocale": "en",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"icon": {
"type": "emoji",
"value": "📖"
},
"isDraftDiffersFromLive": false,
"isPublished": true,
"liveUpdatedAt": "2024-10-18T13:03:25.921Z",
"order": 1,
"parentId": "6474684",
"path": "/getting-started",
"publishedLocales": [
"en"
],
"slug": "1234567-getting-started-guide",
"surveyId": "6743752ca81ae59d25cf834b",
"title": "Getting Started Guide",
"translationCreatedAt": "2024-10-18T12:33:09.099Z",
"translations": {
"id": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"bg": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"bn": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"bs": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ca": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"cs": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"da": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"de": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"el": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"en": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"es": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"et": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"fi": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"fr": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"hi": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"hr": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"hu": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"it": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ja": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ko": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"lt": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"lv": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"mn": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ms": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"nb": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"nl": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"pl": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"pt": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"pt-BR": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ro": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ru": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"sk": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"sl": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"sr": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"sv": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"sw": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"th": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"tr": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"uk": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"vi": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"zh-CN": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"zh-TW": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
}
},
"translationUpdatedAt": "2024-10-19T14:22:15.123Z",
"visibleBy": [
"everyone"
]
}
],
"nextCursor": "eyJpZCI6IjUwN2YxZjc3YmNmODZjZDc5OTQzOTAxMSJ9",
"object": "list",
"totalCount": 42,
"totalCountCapped": false
}Returns Examples
{
"data": [
{
"id": "1234567",
"availableLocales": [
"en",
"de"
],
"createdAt": "2024-10-18T12:33:09.099Z",
"helpCenterId": "j7c5g8ah3ewxp4lo",
"locale": "en",
"object": "article",
"organization": "6595518396205e06b897ad65",
"state": "live",
"updatedAt": "2024-10-18T13:03:25.921Z",
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"defaultLocale": "en",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"icon": {
"type": "emoji",
"value": "📖"
},
"isDraftDiffersFromLive": false,
"isPublished": true,
"liveUpdatedAt": "2024-10-18T13:03:25.921Z",
"order": 1,
"parentId": "6474684",
"path": "/getting-started",
"publishedLocales": [
"en"
],
"slug": "1234567-getting-started-guide",
"surveyId": "6743752ca81ae59d25cf834b",
"title": "Getting Started Guide",
"translationCreatedAt": "2024-10-18T12:33:09.099Z",
"translations": {
"id": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"bg": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"bn": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"bs": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ca": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"cs": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"da": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"de": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"el": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"en": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"es": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"et": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"fi": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"fr": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"hi": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"hr": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"hu": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"it": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ja": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ko": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"lt": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"lv": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"mn": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ms": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"nb": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"nl": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"pl": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"pt": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"pt-BR": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ro": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"ru": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"sk": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"sl": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"sr": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"sv": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"sw": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"th": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"tr": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"uk": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"vi": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"zh-CN": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
},
"zh-TW": {
"author": {
"authorId": "507f1f77bcf86cd799439011",
"name": "John Doe",
"avatarUrl": null
},
"body": "<p>Welcome to our guide.</p>",
"createdAt": "2024-10-18T12:33:09.099Z",
"description": "Learn how to get started",
"externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide",
"featurebaseUrl": "https://yourorg.fbasedev.com/en/help/articles/1234567-getting-started-guide",
"slug": "1234567-getting-started-guide",
"title": "Getting Started Guide",
"updatedAt": "2024-10-19T14:22:15.123Z"
}
},
"translationUpdatedAt": "2024-10-19T14:22:15.123Z",
"visibleBy": [
"everyone"
]
}
],
"nextCursor": "eyJpZCI6IjUwN2YxZjc3YmNmODZjZDc5OTQzOTAxMSJ9",
"object": "list",
"totalCount": 42,
"totalCountCapped": false
}