adding versioning for nerm apis

This commit is contained in:
darrell-thobe-sp
2025-08-04 16:07:28 -04:00
parent 64ff87b840
commit 0f2e959e7b
4 changed files with 402 additions and 336 deletions

6
.gitignore vendored
View File

@@ -50,6 +50,12 @@ yarn.lock
!/docs/api/nerm/authentication.md !/docs/api/nerm/authentication.md
!/docs/api/nerm/pagination-metadata-filtering.md !/docs/api/nerm/pagination-metadata-filtering.md
!/docs/api/nerm/getting-started.md !/docs/api/nerm/getting-started.md
!/docs/api/nerm/v1/authentication.md
!/docs/api/nerm/v1/pagination-metadata-filtering.md
!/docs/api/nerm/v1/getting-started.md
!/docs/api/nerm/v2025/authentication.md
!/docs/api/nerm/v2025/pagination-metadata-filtering.md
!/docs/api/nerm/v2025/getting-started.md
!/docs/api/beta/getting-started.md !/docs/api/beta/getting-started.md

View File

@@ -18,8 +18,8 @@
"clean-api-docs": "docusaurus clean-api-docs", "clean-api-docs": "docusaurus clean-api-docs",
"gen-api-docs:version": "docusaurus gen-api-docs:version", "gen-api-docs:version": "docusaurus gen-api-docs:version",
"clean-api-docs:version": "docusaurus clean-api-docs:version", "clean-api-docs:version": "docusaurus clean-api-docs:version",
"gen-api-docs-all": "npm run merge-all-code-examples && npm run gen-all-api-specs-code-examples && docusaurus gen-api-docs:version isc_versioned:all --plugin-id isc-api && docusaurus gen-api-docs isc_versioned --plugin-id isc-api && docusaurus gen-api-docs iiq --plugin-id iiq-api && docusaurus gen-api-docs nerm --plugin-id nerm-api", "gen-api-docs-all": "npm run merge-all-code-examples && npm run gen-all-api-specs-code-examples && docusaurus gen-api-docs:version isc_versioned:all --plugin-id isc-api && docusaurus gen-api-docs isc_versioned --plugin-id isc-api && docusaurus gen-api-docs iiq --plugin-id iiq-api && docusaurus gen-api-docs:version nerm_versioned:all --plugin-id nerm-api && docusaurus gen-api-docs nerm_versioned --plugin-id nerm-api",
"clean-api-docs-all": "docusaurus clean-api-docs isc_versioned --plugin-id isc-api && docusaurus clean-api-docs:version isc_versioned:all --plugin-id isc-api && docusaurus clean-api-docs iiq --plugin-id iiq-api && docusaurus clean-api-docs nerm --plugin-id nerm-api", "clean-api-docs-all": "docusaurus clean-api-docs isc_versioned --plugin-id isc-api && docusaurus clean-api-docs:version isc_versioned:all --plugin-id isc-api && docusaurus clean-api-docs iiq --plugin-id iiq-api docusaurus clean-api-docs nerm_versioned --plugin-id nerm-api && docusaurus clean-api-docs:version nerm_versioned:all --plugin-id nerm-api && ",
"rebuild-docs": "npm run clean-api-docs-all && npm run gen-api-docs-all", "rebuild-docs": "npm run clean-api-docs-all && npm run gen-api-docs-all",
"beta-merge-code-examples": "node src/components/mergeoverlayfiles.js static/code-examples/beta/python_code_examples_overlay.yaml static/code-examples/beta/powershell_code_examples_overlay.yaml static/code-examples/beta/go_code_examples_overlay.yaml", "beta-merge-code-examples": "node src/components/mergeoverlayfiles.js static/code-examples/beta/python_code_examples_overlay.yaml static/code-examples/beta/powershell_code_examples_overlay.yaml static/code-examples/beta/go_code_examples_overlay.yaml",
"speecy-beta-spec": "speccy resolve --quiet static/api-specs/idn/sailpoint-api.beta.yaml -o static/code-examples/beta/beta.yaml", "speecy-beta-spec": "speccy resolve --quiet static/api-specs/idn/sailpoint-api.beta.yaml -o static/code-examples/beta/beta.yaml",
@@ -39,7 +39,8 @@
"sentence-case-v3": "node src/components/updateSpecsSentenceCase.js static/code-examples/v3/v3.yaml", "sentence-case-v3": "node src/components/updateSpecsSentenceCase.js static/code-examples/v3/v3.yaml",
"sentence-case-v2024": "node src/components/updateSpecsSentenceCase.js static/code-examples/v2024/v2024.yaml", "sentence-case-v2024": "node src/components/updateSpecsSentenceCase.js static/code-examples/v2024/v2024.yaml",
"sentence-case-v2025": "node src/components/updateSpecsSentenceCase.js static/code-examples/v2025/v2025.yaml", "sentence-case-v2025": "node src/components/updateSpecsSentenceCase.js static/code-examples/v2025/v2025.yaml",
"sentence-case-all": "npm run sentence-case-beta && npm run sentence-case-v3 && npm run sentence-case-v2024 && npm run sentence-case-v2025" "sentence-case-all": "npm run sentence-case-beta && npm run sentence-case-v3 && npm run sentence-case-v2024 && npm run sentence-case-v2025",
"version-nerm": "docusaurus gen-api-docs:version nerm_versioned:all --plugin-id nerm-api && docusaurus gen-api-docs nerm_versioned --plugin-id nerm-api"
}, },
"dependencies": { "dependencies": {
"@docusaurus/faster": "3.8.1", "@docusaurus/faster": "3.8.1",

View File

@@ -1,8 +1,8 @@
const {createApiPageMD} = require('./createApiPageMD'); const {createApiPageMD} = require('./createApiPageMD');
import clsx from "clsx"; import clsx from 'clsx';
const pluginConfig = [ const pluginConfig = [
[ [
function disableExpensiveBundlerOptimizationPlugin() { function disableExpensiveBundlerOptimizationPlugin() {
return { return {
name: 'disable-expensive-bundler-optimizations', name: 'disable-expensive-bundler-optimizations',
@@ -89,45 +89,48 @@ const pluginConfig = [
groupPathsBy: 'tag', groupPathsBy: 'tag',
categoryLinkSource: 'tag', categoryLinkSource: 'tag',
sidebarGenerators: { sidebarGenerators: {
createDocItem( createDocItem(item, {sidebarOptions: {customProps}, basePath}) {
item, const sidebar_label = item.frontMatter.sidebar_label;
{ sidebarOptions: { customProps }, basePath } const title = item.title;
) { const id =
const sidebar_label = item.frontMatter.sidebar_label; item.type === 'schema' ? `schemas/${item.id}` : item.id;
const title = item.title; const className =
const id = item.type === 'api'
item.type === "schema" ? `schemas/${item.id}` : item.id; ? clsx(
const className = {
item.type === "api" 'menu__list-item--deprecated': item.api.deprecated,
? clsx( 'menu__list-item--experimental':
{ !!item.api.parameters?.find(
"menu__list-item--deprecated": item.api.deprecated, (header) =>
"menu__list-item--experimental": !!item.api.parameters?.find(header => header.name === 'X-SailPoint-Experimental'), // checks for existence of extension and adds "experimental" class header.name === 'X-SailPoint-Experimental',
"api-method": !!item.api.method, ), // checks for existence of extension and adds "experimental" class
}, 'api-method': !!item.api.method,
item.api.method },
) item.api.method,
: clsx( )
{ : clsx(
"menu__list-item--deprecated": item.schema.deprecated, {
}, 'menu__list-item--deprecated': item.schema.deprecated,
"schema" },
); 'schema',
return { );
type: "doc" as const, return {
id: type: 'doc' as const,
basePath === "" || undefined id:
? `${id}` basePath === '' || undefined
: `${basePath}/${id}`, ? `${id}`
label: (sidebar_label as string) ?? title ?? id, : `${basePath}/${id}`,
customProps: customProps, label: (sidebar_label as string) ?? title ?? id,
className: className ? className : undefined, customProps: customProps,
}; className: className ? className : undefined,
};
},
}, },
}}, },
version: 'v2025', version: 'v2025',
label: 'v2025', label: 'v2025',
downloadUrl: 'https://raw.githubusercontent.com/sailpoint-oss/api-specs/refs/heads/main/dereferenced/deref-sailpoint-api.v2025.yaml', downloadUrl:
'https://raw.githubusercontent.com/sailpoint-oss/api-specs/refs/heads/main/dereferenced/deref-sailpoint-api.v2025.yaml',
baseUrl: '/docs/api/v2025', baseUrl: '/docs/api/v2025',
template: 'api.mustache', template: 'api.mustache',
markdownGenerators: { markdownGenerators: {
@@ -137,21 +140,24 @@ const pluginConfig = [
v2024: { v2024: {
specPath: 'static/code-examples/v2024/v2024.yaml', specPath: 'static/code-examples/v2024/v2024.yaml',
outputDir: 'docs/api/v2024', outputDir: 'docs/api/v2024',
downloadUrl: 'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.v2024.yaml', downloadUrl:
'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.v2024.yaml',
label: 'v2024', label: 'v2024',
baseUrl: '/docs/api/v2024', baseUrl: '/docs/api/v2024',
}, },
v3: { v3: {
specPath: 'static/code-examples/v3/v3.yaml', specPath: 'static/code-examples/v3/v3.yaml',
outputDir: 'docs/api/v3', outputDir: 'docs/api/v3',
downloadUrl: 'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.v3.yaml', downloadUrl:
'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.v3.yaml',
label: 'v3', label: 'v3',
baseUrl: '/docs/api/v3', baseUrl: '/docs/api/v3',
}, },
beta: { beta: {
specPath: 'static/code-examples/beta/beta.yaml', specPath: 'static/code-examples/beta/beta.yaml',
outputDir: 'docs/api/beta', outputDir: 'docs/api/beta',
downloadUrl: 'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.beta.yaml', downloadUrl:
'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.beta.yaml',
label: 'Beta', label: 'Beta',
baseUrl: '/docs/api/beta', baseUrl: '/docs/api/beta',
}, },
@@ -186,21 +192,33 @@ const pluginConfig = [
id: 'nerm-api', id: 'nerm-api',
docsPluginId: 'nerm', docsPluginId: 'nerm',
config: { config: {
nerm: { nerm_versioned: {
specPath: 'static/api-specs/nerm/openapi.yaml', version: 'v2025', // The default version shown
outputDir: 'docs/api/nerm/v1', label: 'v2025',
specPath: 'static/api-specs/nerm/v2025/v2025.yaml',
outputDir: 'docs/api/nerm/v2025',
downloadUrl: downloadUrl:
'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.nerm.yaml', 'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.nerm.v2025.yaml',
baseUrl: '/docs/api/nerm/v2025',
sidebarOptions: { sidebarOptions: {
groupPathsBy: 'tag', groupPathsBy: 'tag',
categoryLinkSource: 'tag', categoryLinkSource: 'tag',
}, },
template: 'api.mustache', template: 'api.mustache',
versions: {
v1: {
label: 'v1',
specPath: 'static/api-specs/nerm/openapi.yaml',
outputDir: 'docs/api/nerm/v1',
baseUrl: '/docs/api/nerm/v1',
downloadUrl:
'https://raw.githubusercontent.com/sailpoint-oss/api-specs/main/dereferenced/deref-sailpoint-api.nerm.v1.yaml',
},
},
}, },
}, },
}, },
], ],
]; ];
export default pluginConfig; export default pluginConfig;

View File

@@ -12,118 +12,160 @@ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
Create as many sidebars as you want. Create as many sidebars as you want.
*/ */
import { versionSelector, versionCrumb } from 'docusaurus-plugin-openapi-docs/lib/sidebars/utils'; import {
import versions from './docs/api/v2025/versions.json'; versionSelector,
versionCrumb,
} from 'docusaurus-plugin-openapi-docs/lib/sidebars/utils';
import versions from './docs/api/v2025/versions.json';
import nermVersions from './docs/api/nerm/v2025/versions.json';
const sidebars: SidebarsConfig = { const sidebars: SidebarsConfig = {
openApiSidebar: [ openApiSidebar: [
{ {
type: 'category', type: 'category',
label: 'Documentation', label: 'Documentation',
collapsible: false, collapsible: false,
link: { type: 'doc', id: 'docs' }, link: {type: 'doc', id: 'docs'},
items: [ items: [
{ {
type: 'category', type: 'category',
label: 'Extensibility', label: 'Extensibility',
link: { type: 'doc', id: 'extensibility' }, link: {type: 'doc', id: 'extensibility'},
items: [{ type: 'autogenerated', dirName: 'extensibility' }], items: [{type: 'autogenerated', dirName: 'extensibility'}],
}, },
{ {
type: 'category', type: 'category',
label: 'Connectivity', label: 'Connectivity',
link: { type: 'doc', id: 'connectivity' }, link: {type: 'doc', id: 'connectivity'},
items: [{ type: 'autogenerated', dirName: 'connectivity' }], items: [{type: 'autogenerated', dirName: 'connectivity'}],
}, },
{ {
type: 'category', type: 'category',
label: 'Tools', label: 'Tools',
link: { type: 'doc', id: 'tools' }, link: {type: 'doc', id: 'tools'},
items: [{ type: 'autogenerated', dirName: 'tools' }], items: [{type: 'autogenerated', dirName: 'tools'}],
}, },
{ {
type: 'category', type: 'category',
label: 'Reporting', label: 'Reporting',
link: { type: 'doc', id: 'reporting' }, link: {type: 'doc', id: 'reporting'},
items: [{ type: 'autogenerated', dirName: 'reporting' }], items: [{type: 'autogenerated', dirName: 'reporting'}],
}, },
{ {
type: 'category', type: 'category',
label: 'Guides', label: 'Guides',
link: { type: 'doc', id: 'guides' }, link: {type: 'doc', id: 'guides'},
items: [{ type: 'autogenerated', dirName: 'guides' }], items: [{type: 'autogenerated', dirName: 'guides'}],
}, },
{ {
type: 'link', type: 'link',
label: 'Product Documentation', label: 'Product Documentation',
href: 'https://documentation.sailpoint.com', href: 'https://documentation.sailpoint.com',
}, },
], ],
}, },
], ],
iiqSideBar: [ iiqSideBar: [
{ {
type: 'category', type: 'category',
label: 'Documentation', label: 'Documentation',
collapsible: false, collapsible: false,
link: { type: 'doc', id: 'iiq' }, link: {type: 'doc', id: 'iiq'},
items: [ items: [
{ {
type: 'category', type: 'category',
label: 'Plugin Developer Guide', label: 'Plugin Developer Guide',
link: { type: 'doc', id: 'plugin-developer-guide' }, link: {type: 'doc', id: 'plugin-developer-guide'},
items: [{ type: 'autogenerated', dirName: 'iiq/plugin-developer-guide' }], items: [
}, {type: 'autogenerated', dirName: 'iiq/plugin-developer-guide'},
{ ],
type: 'link', },
label: 'Product Documentation', {
href: 'https://documentation.sailpoint.com/#identityiq', type: 'link',
}, label: 'Product Documentation',
], href: 'https://documentation.sailpoint.com/#identityiq',
}, },
], ],
iiqApiSideBar: [ },
{ ],
type: 'category', iiqApiSideBar: [
label: 'API Specifications', {
collapsible: false, type: 'category',
link: { label: 'API Specifications',
type: 'generated-index', collapsible: false,
title: 'API Specifications', link: {
description: type: 'generated-index',
"These are the SCIM APIs for SailPoint's on-premise service, IdentityIQ. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.", title: 'API Specifications',
slug: '/api/iiq', description:
}, "These are the SCIM APIs for SailPoint's on-premise service, IdentityIQ. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.",
items: require('./docs/api/iiq/sidebar.ts'), slug: '/api/iiq',
}, },
], items: require('./docs/api/iiq/sidebar.ts'),
nermSideBar: [ },
{ ],
type: 'category', nerm_2025_sidebar: [
label: 'NERM', {
collapsible: true, type: 'html',
link: { type: 'doc', id: 'api/non-employee' }, defaultStyle: true,
customProps: { description: 'NERM API specifications.' }, value: versionSelector(nermVersions),
items: [ className: 'version-button',
{ type: 'doc', id: 'api/nerm/getting-started' }, },
{ type: 'doc', id: 'api/nerm/authentication' }, {
{ type: 'doc', id: 'api/nerm/pagination-metadata-filtering' }, type: 'html',
{ defaultStyle: true,
type: 'category', value: versionCrumb(`v2025`),
label: 'NERM v1 API', },
link: { {
type: 'generated-index', type: 'category',
title: 'NERM v1 API', label: 'NERM v2025 APIs',
description: link: {
'These are the Non-employee Risk Management APIs for SailPoint. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.', type: 'generated-index',
slug: '/api/nerm/v1', title: 'NERM v2025 APIs',
}, description:
items: require('./docs/api/nerm/v1/sidebar.ts'), 'These are the Non-employee Risk Management APIs for SailPoint.',
}, slug: '/api/nerm/v2025',
], },
}, items: require('./docs/api/nerm/v2025/sidebar.ts'),
], },
isc_2025_sidebar: [ ],
nermSideBar: [
{
type: 'html',
defaultStyle: true,
value: versionSelector(nermVersions),
className: 'version-button',
},
{
type: 'html',
defaultStyle: true,
value: versionCrumb(`v1`), // or dynamically detect the current version
},
{
type: 'doc',
id: 'api/nerm/getting-started',
},
{
type: 'doc',
id: 'api/nerm/authentication',
},
{
type: 'doc',
id: 'api/nerm/pagination-metadata-filtering',
},
{
type: 'category',
label: 'NERM v1 API',
link: {
type: 'generated-index',
title: 'NERM v1 API',
description:
'These are the Non-employee Risk Management APIs for SailPoint. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.',
slug: '/api/nerm/v1',
},
items: require('./docs/api/nerm/v1/sidebar.ts'),
},
],
isc_2025_sidebar: [
{ {
type: 'html', type: 'html',
defaultStyle: true, defaultStyle: true,
@@ -180,178 +222,177 @@ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
items: require('./docs/api/v2025/sidebar.ts'), items: require('./docs/api/v2025/sidebar.ts'),
}, },
], ],
isc_2024_sidebar: [ isc_2024_sidebar: [
{ {
type: 'html', type: 'html',
defaultStyle: true, defaultStyle: true,
value: versionSelector(versions), value: versionSelector(versions),
className: 'version-button', className: 'version-button',
}, },
{ {
type: 'html', type: 'html',
defaultStyle: true, defaultStyle: true,
value: versionCrumb(`v2024`), value: versionCrumb(`v2024`),
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v2024/getting-started', id: 'api/v2024/getting-started',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v2024/authentication', id: 'api/v2024/authentication',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v2024/authorization', id: 'api/v2024/authorization',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v2024/api-versioning-strategy', id: 'api/v2024/api-versioning-strategy',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v2024/standard-collection-parameters', id: 'api/v2024/standard-collection-parameters',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v2024/rate-limit', id: 'api/v2024/rate-limit',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v2024/postman-collections', id: 'api/v2024/postman-collections',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v2024/patch-requests', id: 'api/v2024/patch-requests',
}, },
{ {
type: 'category', type: 'category',
label: 'V2024 APIs', label: 'V2024 APIs',
link: { link: {
type: 'generated-index', type: 'generated-index',
title: 'v2024 APIs', title: 'v2024 APIs',
description: description:
'Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.', 'Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.',
slug: '/api/v2024', slug: '/api/v2024',
}, },
items: require('./docs/api/v2024/sidebar.ts'), items: require('./docs/api/v2024/sidebar.ts'),
}, },
], ],
isc_beta_sidebar: [ isc_beta_sidebar: [
{ {
type: 'html', type: 'html',
defaultStyle: true, defaultStyle: true,
value: versionSelector(versions), value: versionSelector(versions),
className: 'version-button', className: 'version-button',
}, },
{ {
type: 'html', type: 'html',
defaultStyle: true, defaultStyle: true,
value: versionCrumb(`beta`), value: versionCrumb(`beta`),
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/beta/getting-started', id: 'api/beta/getting-started',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/beta/authentication', id: 'api/beta/authentication',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/beta/authorization', id: 'api/beta/authorization',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/beta/api-versioning-strategy', id: 'api/beta/api-versioning-strategy',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/beta/standard-collection-parameters', id: 'api/beta/standard-collection-parameters',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/beta/rate-limit', id: 'api/beta/rate-limit',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/beta/postman-collections', id: 'api/beta/postman-collections',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/beta/patch-requests', id: 'api/beta/patch-requests',
}, },
{ {
type: 'category', type: 'category',
label: 'Beta APIs', label: 'Beta APIs',
link: { link: {
type: 'generated-index', type: 'generated-index',
title: 'Beta APIs', title: 'Beta APIs',
description: description:
'Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.', 'Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.',
slug: '/api/beta', slug: '/api/beta',
}, },
items: require('./docs/api/beta/sidebar.ts'), items: require('./docs/api/beta/sidebar.ts'),
}, },
], ],
isc_v3_sidebar: [ isc_v3_sidebar: [
{ {
type: 'html', type: 'html',
defaultStyle: true, defaultStyle: true,
value: versionSelector(versions), value: versionSelector(versions),
className: 'version-button', className: 'version-button',
}, },
{ {
type: 'html', type: 'html',
defaultStyle: true, defaultStyle: true,
value: versionCrumb(`v3`), value: versionCrumb(`v3`),
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v3/getting-started', id: 'api/v3/getting-started',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v3/authentication', id: 'api/v3/authentication',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v3/authorization', id: 'api/v3/authorization',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v3/api-versioning-strategy', id: 'api/v3/api-versioning-strategy',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v3/standard-collection-parameters', id: 'api/v3/standard-collection-parameters',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v3/rate-limit', id: 'api/v3/rate-limit',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v3/postman-collections', id: 'api/v3/postman-collections',
}, },
{ {
type: 'doc', type: 'doc',
id: 'api/v3/patch-requests', id: 'api/v3/patch-requests',
}, },
{ {
type: 'category', type: 'category',
label: 'V3 APIs', label: 'V3 APIs',
link: { link: {
type: 'generated-index', type: 'generated-index',
title: 'V3 APIs', title: 'V3 APIs',
description: description:
'Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.', 'Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.',
slug: '/api/v3', slug: '/api/v3',
}, },
items: require('./docs/api/v3/sidebar.ts'), items: require('./docs/api/v3/sidebar.ts'),
}, },
], ],
}; };
export default sidebars;
export default sidebars;