-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update openapi.yml * add new methods to overrides * override tags * fix overrides * fix override path * try to remove top-level tags too * tags: {} * fix scim endpoint tag * fix get scim group endpoint path * renaming API group (#27) Co-authored-by: chdeskur <[email protected]> * update openapi.yml * fix overrides * add example for list users * bunch of fixes * fix example param locations --------- Co-authored-by: fern <[email protected]> Co-authored-by: chdeskur <[email protected]>
- Loading branch information
1 parent
345fd13
commit 3aa3466
Showing
4 changed files
with
394 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"organization": "ssoready", | ||
"version": "0.29.0" | ||
"version": "0.39.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
servers: | ||
- url: https://api.ssoready.com | ||
|
||
tags: {} | ||
|
||
components: | ||
securitySchemes: | ||
bearerAuth: | ||
|
@@ -10,6 +15,8 @@ components: | |
paths: | ||
/v1/saml/redeem: | ||
post: | ||
tags: | ||
- saml | ||
x-fern-sdk-group-name: saml | ||
x-fern-sdk-method-name: redeemSAMLAccessCode | ||
x-fern-examples: | ||
|
@@ -23,6 +30,8 @@ paths: | |
|
||
/v1/saml/redirect: | ||
post: | ||
tags: | ||
- saml | ||
x-fern-sdk-group-name: saml | ||
x-fern-sdk-method-name: getSAMLRedirectUrl | ||
x-fern-examples: | ||
|
@@ -31,3 +40,93 @@ paths: | |
response: | ||
body: | ||
redirectUrl: https://your.redirect.url | ||
|
||
/v1/scim/users: | ||
get: | ||
tags: | ||
- scim | ||
x-fern-sdk-group-name: scim | ||
x-fern-sdk-method-name: listSCIMUsers | ||
x-fern-examples: | ||
- query-parameters: | ||
organizationExternalId: my_custom_external_id | ||
response: | ||
body: | ||
scimUsers: | ||
- id: scim_user_... | ||
email: [email protected] | ||
deleted: false | ||
attributes: | ||
displayName: John Doe | ||
preferredLanguage: en_US | ||
key: value | ||
- id: scim_user_... | ||
email: [email protected] | ||
deleted: true | ||
attributes: | ||
displayName: Jane Doe | ||
preferredLanguage: fr_FR | ||
key: value | ||
nextPageToken: "..." | ||
|
||
/v1/scim/users/{id}: | ||
get: | ||
tags: | ||
- scim | ||
x-fern-sdk-group-name: scim | ||
x-fern-sdk-method-name: getSCIMUser | ||
x-fern-examples: | ||
- path-parameters: | ||
id: scim_user_... | ||
response: | ||
body: | ||
scimUser: | ||
id: scim_user_... | ||
email: [email protected] | ||
deleted: false | ||
attributes: | ||
displayName: John Doe | ||
preferredLanguage: en_US | ||
key: value | ||
|
||
/v1/scim/groups: | ||
get: | ||
tags: | ||
- scim | ||
x-fern-sdk-group-name: scim | ||
x-fern-sdk-method-name: listSCIMGroups | ||
x-fern-examples: | ||
- query-parameters: | ||
organizationExternalId: my_custom_external_id | ||
response: | ||
body: | ||
scimGroups: | ||
- id: scim_group_... | ||
displayName: Engineering | ||
deleted: false | ||
attributes: | ||
key: value | ||
- id: scim_group_... | ||
displayName: Marketing | ||
deleted: true | ||
attributes: | ||
key: value | ||
nextPageToken: "..." | ||
|
||
/v1/scim/groups/{id}: | ||
get: | ||
tags: | ||
- scim | ||
x-fern-sdk-group-name: scim | ||
x-fern-sdk-method-name: getSCIMGroup | ||
x-fern-examples: | ||
- path-parameters: | ||
id: scim_group_... | ||
response: | ||
body: | ||
scimGroup: | ||
id: scim_group_... | ||
displayName: Engineering | ||
deleted: false | ||
attributes: | ||
key: value |
Oops, something went wrong.