## List articles **get** `/v2/help_center/articles` Returns a paginated list of articles within your organization's help center. Articles are the main content pieces that contain documentation, guides, and FAQs. ### Query Parameters - `limit` - Number of items to return (1-100, default 10) - `cursor` - Cursor for pagination - `state` - Filter by article state: "live", "draft", or "all" (default "live") - `parentId` - Filter by parent collection ID ### Response Format Returns a list object with: - `object` - Always "list" - `data` - Array of article objects - `nextCursor` - Cursor for next page (null if no more results) ### Article Object Each article includes: - `id` - Unique identifier - `title` - Article title - `description` - Article description - `body` - Article content (HTML) - `slug` - URL slug - `icon` - Article icon (emoji or custom) - `parentId` - Parent collection ID - `helpCenterId` - ID of the help center this article belongs to - `organization` - Organization ID - `state` - Article state (live or draft) - `defaultLocale` - Default locale for content - `locale` - Current locale - `availableLocales` - Array of available locales - `publishedLocales` - Array of locales where article is published - `featurebaseUrl` - Featurebase URL for the article - `externalUrl` - External URL if custom domain is configured - `author` - Author information (name, authorId, avatarUrl) - `order` - Display order - `isPublished` - Whether the article is published - `isDraftDiffersFromLive` - Whether draft differs from live version - `translations` - Translations for different locales - `createdAt` - ISO 8601 timestamp when created - `updatedAt` - ISO 8601 timestamp when last updated - `liveUpdatedAt` - ISO 8601 timestamp when live version was last updated ### Query Parameters - `cursor: optional string` An opaque cursor for pagination. Use the nextCursor value from a previous response to fetch the next page of results. - `helpCenterId: optional string` Filter articles by help center ID. If omitted, returns articles across all help centers. - `limit: optional number` A limit on the number of objects to be returned, between 1 and 100. - `parentId: optional string` Filter articles by parent collection ID - `state: optional "live" or "draft" or "all"` Filter articles by state. Use "all" to get both draft and live articles. - `"live"` - `"draft"` - `"all"` ### Header Parameters - `"Featurebase-Version": optional "2026-01-01.nova" or "2025-12-12.clover"` - `"2026-01-01.nova"` - `"2025-12-12.clover"` ### Returns - `data: array of Article` Array of article objects - `id: string` Article unique identifier - `availableLocales: array of "bn" or "bs" or "pt-BR" or 39 more` Available locales - `"bn"` - `"bs"` - `"pt-BR"` - `"bg"` - `"ca"` - `"hr"` - `"cs"` - `"da"` - `"nl"` - `"en"` - `"et"` - `"fi"` - `"fr"` - `"de"` - `"el"` - `"hi"` - `"hu"` - `"id"` - `"it"` - `"ja"` - `"ko"` - `"lv"` - `"lt"` - `"ms"` - `"mn"` - `"nb"` - `"pl"` - `"pt"` - `"ro"` - `"ru"` - `"sr"` - `"zh-CN"` - `"sk"` - `"sl"` - `"es"` - `"sw"` - `"sv"` - `"th"` - `"zh-TW"` - `"tr"` - `"uk"` - `"vi"` - `createdAt: string` ISO 8601 timestamp when created - `helpCenterId: string` Help Center ID - `locale: "bn" or "bs" or "pt-BR" or 39 more` Current locale - `"bn"` - `"bs"` - `"pt-BR"` - `"bg"` - `"ca"` - `"hr"` - `"cs"` - `"da"` - `"nl"` - `"en"` - `"et"` - `"fi"` - `"fr"` - `"de"` - `"el"` - `"hi"` - `"hu"` - `"id"` - `"it"` - `"ja"` - `"ko"` - `"lv"` - `"lt"` - `"ms"` - `"mn"` - `"nb"` - `"pl"` - `"pt"` - `"ro"` - `"ru"` - `"sr"` - `"zh-CN"` - `"sk"` - `"sl"` - `"es"` - `"sw"` - `"sv"` - `"th"` - `"zh-TW"` - `"tr"` - `"uk"` - `"vi"` - `object: "article"` Object type identifier - `"article"` - `organization: string` Organization ID - `state: "live" or "draft"` Article state - `"live"` - `"draft"` - `updatedAt: string` ISO 8601 timestamp when last updated - `author: optional ArticleAuthor` Article author - `authorId: string` Author user ID - `name: string` Author name - `avatarUrl: optional string` Author avatar URL - `body: optional string` Article body content (HTML) - `defaultLocale: optional "bn" or "bs" or "pt-BR" or 39 more` Default locale - `"bn"` - `"bs"` - `"pt-BR"` - `"bg"` - `"ca"` - `"hr"` - `"cs"` - `"da"` - `"nl"` - `"en"` - `"et"` - `"fi"` - `"fr"` - `"de"` - `"el"` - `"hi"` - `"hu"` - `"id"` - `"it"` - `"ja"` - `"ko"` - `"lv"` - `"lt"` - `"ms"` - `"mn"` - `"nb"` - `"pl"` - `"pt"` - `"ro"` - `"ru"` - `"sr"` - `"zh-CN"` - `"sk"` - `"sl"` - `"es"` - `"sw"` - `"sv"` - `"th"` - `"zh-TW"` - `"tr"` - `"uk"` - `"vi"` - `description: optional string` Article description - `externalUrl: optional string` External URL - `featurebaseUrl: optional string` Featurebase URL - `icon: optional object { type, value }` Article icon - `type: "emoji" or "custom"` Icon type - `"emoji"` - `"custom"` - `value: string` Icon value (emoji or URL) - `isDraftDiffersFromLive: optional boolean` Whether draft differs from live - `isPublished: optional boolean` Whether the article is published - `liveUpdatedAt: optional string` ISO 8601 timestamp when live version was last updated - `order: optional number` Display order - `parentId: optional string` Parent collection ID - `path: optional string` Path to article within help center hierarchy - `publishedLocales: optional array of "bn" or "bs" or "pt-BR" or 39 more` Published locales - `"bn"` - `"bs"` - `"pt-BR"` - `"bg"` - `"ca"` - `"hr"` - `"cs"` - `"da"` - `"nl"` - `"en"` - `"et"` - `"fi"` - `"fr"` - `"de"` - `"el"` - `"hi"` - `"hu"` - `"id"` - `"it"` - `"ja"` - `"ko"` - `"lv"` - `"lt"` - `"ms"` - `"mn"` - `"nb"` - `"pl"` - `"pt"` - `"ro"` - `"ru"` - `"sr"` - `"zh-CN"` - `"sk"` - `"sl"` - `"es"` - `"sw"` - `"sv"` - `"th"` - `"zh-TW"` - `"tr"` - `"uk"` - `"vi"` - `slug: optional string` URL slug - `surveyId: optional string` Associated survey ID - `title: optional string` Article title - `translationCreatedAt: optional string` ISO 8601 timestamp when translation was created - `translations: optional object { id, bg, bn, 39 more }` Translations by locale code - `id: optional ArticleTranslation` - `author: optional ArticleAuthor` Article author - `body: optional string` Article body content (HTML) - `createdAt: optional string` ISO 8601 timestamp when translation was created - `description: optional string` Article description - `externalUrl: optional string` External URL - `featurebaseUrl: optional string` Featurebase URL - `slug: optional string` URL slug - `title: optional string` Article title - `updatedAt: optional string` ISO 8601 timestamp when translation was last updated - `bg: optional ArticleTranslation` - `bn: optional ArticleTranslation` - `bs: optional ArticleTranslation` - `ca: optional ArticleTranslation` - `cs: optional ArticleTranslation` - `da: optional ArticleTranslation` - `de: optional ArticleTranslation` - `el: optional ArticleTranslation` - `en: optional ArticleTranslation` - `es: optional ArticleTranslation` - `et: optional ArticleTranslation` - `fi: optional ArticleTranslation` - `fr: optional ArticleTranslation` - `hi: optional ArticleTranslation` - `hr: optional ArticleTranslation` - `hu: optional ArticleTranslation` - `it: optional ArticleTranslation` - `ja: optional ArticleTranslation` - `ko: optional ArticleTranslation` - `lt: optional ArticleTranslation` - `lv: optional ArticleTranslation` - `mn: optional ArticleTranslation` - `ms: optional ArticleTranslation` - `nb: optional ArticleTranslation` - `nl: optional ArticleTranslation` - `pl: optional ArticleTranslation` - `pt: optional ArticleTranslation` - `"pt-BR": optional ArticleTranslation` - `ro: optional ArticleTranslation` - `ru: optional ArticleTranslation` - `sk: optional ArticleTranslation` - `sl: optional ArticleTranslation` - `sr: optional ArticleTranslation` - `sv: optional ArticleTranslation` - `sw: optional ArticleTranslation` - `th: optional ArticleTranslation` - `tr: optional ArticleTranslation` - `uk: optional ArticleTranslation` - `vi: optional ArticleTranslation` - `"zh-CN": optional ArticleTranslation` - `"zh-TW": optional ArticleTranslation` - `translationUpdatedAt: optional string` ISO 8601 timestamp when translation was last updated - `visibleBy: optional array of string` Visibility settings - `nextCursor: string` Cursor for fetching the next page (cursor-based pagination) - `object: "list"` Object type identifier - `"list"` ### Example ```http curl https://do.featurebase.app/v2/help_center/articles \ -H "Authorization: Bearer $FEATUREBASE_API_KEY" ``` #### Response ```json { "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": "

Welcome to our guide.

", "defaultLocale": "en", "description": "Learn how to get started", "externalUrl": "https://help.yourdomain.com/en/articles/1234567-getting-started-guide", "featurebaseUrl": "https://yourorg.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "

Welcome to our guide.

", "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.featurebase.app/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": "eyJpZCI6IjY3NDM3NTJjYTgxYWU1OWQyNWNmODM0YiJ9", "object": "list" } ```