keycloak-scim/authorization_services/topics/service-protection-resources-api.adoc

20 lines
890 B
Text
Raw Normal View History

2016-11-29 15:30:53 +00:00
[[_service_protection_resources_api]]
= Managing Resources
2016-06-05 22:17:31 +00:00
Resource servers can manage their resources remotely using a UMA-compliant endpoint.
```bash
http://${host}:${port}/auth/realms/${realm_name}/authz/protection/resource_set
```
This endpoint provides registration operations outlined as follows (entire path omitted for clarity):
2016-06-05 22:17:31 +00:00
* Create resource set description: POST /resource_set
* Read resource set description: GET /resource_set/{_id}
* Update resource set description: PUT /resource_set/{_id}
* Delete resource set description: DELETE /resource_set/{_id}
* List resource set descriptions: GET /resource_set
* List resource set descriptions using a filter: GET /resource_set?filter=${filter}
2016-06-05 22:17:31 +00:00
For more information about the contract for each of these operations, see https://docs.kantarainitiative.org/uma/rec-oauth-resource-reg-v1_0_1.html[UMA Resource Set Registration].