forked from gristlabs/grist-help
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reintroduce SCIM documentation (gristlabs#434)
- Loading branch information
Showing
8 changed files
with
881 additions
and
58 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
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
paths: | ||
/scim/v2/Bulk: | ||
post: | ||
summary: Bulk operation | ||
operationId: bulkOperation | ||
tags: | ||
- scim | ||
requestBody: | ||
description: Operations to be performed in bulk. | ||
required: true | ||
content: | ||
application/scim+json: | ||
schema: | ||
type: object | ||
properties: | ||
schemas: | ||
type: array | ||
items: | ||
type: string | ||
enum: | ||
- "urn:ietf:params:scim:api:messages:2.0:BulkRequest" | ||
Operations: | ||
type: array | ||
description: List of operations to be executed. | ||
items: | ||
type: object | ||
properties: | ||
method: | ||
type: string | ||
description: HTTP method for the operation. | ||
example: "POST" | ||
path: | ||
type: string | ||
description: Resource path for the operation. | ||
example: "/scim/v2/Users" | ||
data: | ||
type: object | ||
description: Data for the operation. | ||
responses: | ||
'200': | ||
description: Bulk operations executed successfully. | ||
'400': | ||
description: Bad request. | ||
'500': | ||
description: Internal server error. | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
paths: | ||
/scim/v2/Schemas: | ||
get: | ||
summary: Retrieve SCIM schemas | ||
operationId: getSchemas | ||
tags: | ||
- scim | ||
responses: | ||
'200': | ||
description: Successfully retrieved schemas. | ||
'401': | ||
description: Unauthenticated | ||
'500': | ||
description: Internal server error. | ||
|
||
/scim/v2/ServiceProviderConfig: | ||
get: | ||
summary: Retrieve service provider configuration | ||
operationId: getServiceProviderConfig | ||
tags: | ||
- scim | ||
responses: | ||
'200': | ||
description: Successfully retrieved service provider configuration. | ||
'401': | ||
description: Unauthenticated | ||
'500': | ||
description: Internal server error. | ||
|
||
/scim/v2/ResourceTypes: | ||
get: | ||
summary: Retrieve SCIM resource types | ||
operationId: getResourceTypes | ||
tags: | ||
- scim | ||
responses: | ||
'200': | ||
description: Successfully retrieved resource types. | ||
'401': | ||
description: Unauthenticated | ||
'500': | ||
description: Internal server error. |
Oops, something went wrong.