chore: add scim service provider config endpoint (#15235)

Adds a static `/scim/v2/ServiceProviderConfig` endpoint. Our scim
support is static, so the response config is also defined statically.
This commit is contained in:
Steven Masley
2024-10-25 18:27:34 -04:00
committed by GitHub
parent 27f5ff2dd1
commit e03ef62a13
7 changed files with 167 additions and 1 deletions
+18
View File
@@ -2007,6 +2007,24 @@ Status Code **200**
To perform this operation, you must be authenticated. [Learn more](authentication.md).
## SCIM 2.0: Service Provider Config
### Code samples
```shell
# Example request using curl
curl -X GET http://coder-server:8080/api/v2/scim/v2/ServiceProviderConfig
```
`GET /scim/v2/ServiceProviderConfig`
### Responses
| Status | Meaning | Description | Schema |
| ------ | ------------------------------------------------------- | ----------- | ------ |
| 200 | [OK](https://tools.ietf.org/html/rfc7231#section-6.3.1) | OK | |
## SCIM 2.0: Get users
### Code samples