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