Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Management API reference docs #30

Merged
merged 4 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions fern/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ navigation:
- saml
- scim:
title: SCIM
- management:
title: Management API
contents:
- management.organizations
- management.setup-urls:
title: Setup URLs
- management.saml-connections
- management.scim-directories:
title: SCIM Directories
- section: IDP configuration
contents:
- page: Enabling self-service configuration for your customers
Expand Down
86 changes: 86 additions & 0 deletions fern/openapi-overrides.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,89 @@ paths:
deleted: false
attributes:
key: value

/v1/organizations:
get:
x-fern-sdk-group-name:
- management
- organizations
x-fern-sdk-method-name: listOrganizations
post:
x-fern-sdk-group-name:
- management
- organizations
x-fern-sdk-method-name: createOrganization

/v1/organizations/{id}:
get:
x-fern-sdk-group-name:
- management
- organizations
x-fern-sdk-method-name: getOrganization
patch:
x-fern-sdk-group-name:
- management
- organizations
x-fern-sdk-method-name: updateOrganization

/v1/setup-urls:
post:
x-fern-sdk-group-name:
- management
- setup-urls
x-fern-sdk-method-name: createSetupURL

/v1/saml-connections:
get:
x-fern-sdk-group-name:
- management
- saml-connections
x-fern-sdk-method-name: listSAMLConnections
post:
x-fern-sdk-group-name:
- management
- saml-connections
x-fern-sdk-method-name: createSAMLConnection

/v1/saml-connections/{id}:
get:
x-fern-sdk-group-name:
- management
- saml-connections
x-fern-sdk-method-name: getSAMLConnection
patch:
x-fern-sdk-group-name:
- management
- saml-connections
x-fern-sdk-method-name: updateSAMLConnection

/v1/scim-directories:
get:
x-fern-sdk-group-name:
- management
- scim-directories
x-fern-sdk-method-name: listSCIMDirectories
post:
x-fern-sdk-group-name:
- management
- scim-directories
x-fern-sdk-method-name: createSCIMDirectory

/v1/scim-directories/{id}:
get:
x-fern-sdk-group-name:
- management
- scim-directories
x-fern-sdk-method-name: getSCIMDirectory
patch:
x-fern-sdk-group-name:
- management
- scim-directories
x-fern-sdk-method-name: updateSCIMDirectory

/v1/scim-directories/{id}/rotate-bearer-token:
post:
x-fern-sdk-group-name:
- management
- scim-directories
x-fern-sdk-method-name: rotateSCIMDirectoryBearerToken
Loading
Loading