main
1
2#### GET http://localhost:5000/scim/v2/ResourceTypes
3
4Example curl request:
5
6```bash
7$ curl http://localhost:5000/scim/v2/ResourceTypes \
8 -X GET \
9 -d '' \
10 -H "Accept: application/json" \
11 -H "Content-Type: application/scim+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/scim+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/"56f19f58fa40ed54afeee2b454e0789d"
31Cache-Control: max-age=0, private, must-revalidate
32X-Request-Id: 06329ff1-216e-4c33-93f9-46d006e16bd7
33Transfer-Encoding: chunked
34```
35```json
36[
37 {
38 "schemas": [
39 "urn:ietf:params:scim:schemas:core:2.0:ResourceType"
40 ],
41 "id": "User",
42 "meta": {
43 "location": "http://localhost:5000/scim/v2/resource_types/User",
44 "resourceType": "ResourceType"
45 },
46 "description": "User Account",
47 "endpoint": "http://localhost:5000/scim/v2/users",
48 "name": "User",
49 "schema": "urn:ietf:params:scim:schemas:core:2.0:User",
50 "schemaExtensions": [
51
52 ]
53 },
54 {
55 "schemas": [
56 "urn:ietf:params:scim:schemas:core:2.0:ResourceType"
57 ],
58 "id": "Group",
59 "meta": {
60 "location": "http://localhost:5000/scim/v2/resource_types/Group",
61 "resourceType": "ResourceType"
62 },
63 "description": "Group",
64 "endpoint": "http://localhost:5000/scim/v2/groups",
65 "name": "Group",
66 "schema": "urn:ietf:params:scim:schemas:core:2.0:Group",
67 "schemaExtensions": [
68
69 ]
70 }
71]
72```
73