main
1
2#### GET http://localhost:5000/scim/v2/ResourceTypes/Group
3
4Example curl request:
5
6```bash
7$ curl http://localhost:5000/scim/v2/ResourceTypes/Group \
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/"d0dea12284b4b8c065c626de41ae8b7c"
31Cache-Control: max-age=0, private, must-revalidate
32X-Request-Id: 2916c0bf-1610-4e21-ae41-468b8bb8f9a4
33Transfer-Encoding: chunked
34```
35```json
36{
37 "schemas": [
38 "urn:ietf:params:scim:schemas:core:2.0:ResourceType"
39 ],
40 "id": "Group",
41 "meta": {
42 "location": "http://localhost:5000/scim/v2/resource_types/Group",
43 "resourceType": "ResourceType"
44 },
45 "description": "Group",
46 "endpoint": "http://localhost:5000/scim/v2/groups",
47 "name": "Group",
48 "schema": "urn:ietf:params:scim:schemas:core:2.0:Group",
49 "schemaExtensions": [
50
51 ]
52}
53```
54