main
 1
 2#### GET http://localhost:5000/scim/v2/ServiceProviderConfig
 3
 4Example curl request:
 5
 6```bash
 7$ curl http://localhost:5000/scim/v2/ServiceProviderConfig \
 8  -X GET \
 9  -d '' \
10  -H "Accept: application/json" \
11  -H "Content-Type: application/json" \
12  -H "User-Agent: net/hippie 0.1.9" \
13  -H "Accept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3"
14```
15Request:
16```text
17Accept: application/json
18Content-Type: application/json
19User-Agent: net/hippie 0.1.9
20Accept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21```
22```json
23
24```
25Response:
26```text
27200 OK
28
29Content-Type: application/scim+json
30Etag: W/"9dca6148d7e4fc9b26b5997355d0d962"
31Cache-Control: max-age=0, private, must-revalidate
32X-Request-Id: c718be94-7780-4e6c-b0ea-c189152cac61
33Transfer-Encoding: chunked
34```
35```json
36{
37  "schemas": [
38    "urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
39  ],
40  "documentationUri": "http://localhost:5000/doc",
41  "patch": {
42    "supported": false
43  },
44  "bulk": {
45    "supported": false,
46    "maxOperations": null,
47    "maxPayloadSize": null
48  },
49  "filter": {
50    "supported": false,
51    "maxResults": null
52  },
53  "changePassword": {
54    "supported": false
55  },
56  "sort": {
57    "supported": false
58  },
59  "etag": {
60    "supported": false
61  },
62  "authenticationSchemes": [
63    {
64      "name": "OAuth Bearer Token",
65      "description": "Authentication scheme using the OAuth Bearer Token Standard",
66      "specUri": "http://www.rfc-editor.org/info/rfc6750",
67      "documentationUri": "http://example.com/help/oauth.html",
68      "type": "oauthbearertoken",
69      "primary": true
70    }
71  ],
72  "meta": {
73    "resourceType": "ServiceProviderConfig",
74    "created": "2018-10-29T17:34:27Z",
75    "lastModified": "2018-10-29T17:34:27Z",
76    "location": "http://localhost:5000/scim/v2/ServiceProviderConfig",
77    "version": 1
78  }
79}
80```
81