Forked from edwint88/Keycloak REST API - create user
Created
December 9, 2021 15:34
-
-
Save uzbekdev1/c8cdd7d986f4dd82ffe3348ca55997ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Method: POST | |
# Headers | |
# Authorization Bearer eyJhbGciO... (access token) | |
# Content-Type: application/json | |
# Body | |
# { | |
# "username": "test-user", | |
# "groups": ["Comp1"], // doesn't work, even if it is in the docs | |
# "lastName": "test", | |
# "firstName": "joe", | |
# "email": "[email protected]", | |
# "attributes": {"test": "attr"}, | |
# "id": "c946d741-b2d6-44b6-9720-943614396faa", // doesn't work | |
# "enabled": true, | |
# "credentials":[{ | |
# "type": "password", | |
# "value": "test", | |
# "temporary": false | |
# }], | |
# "realmRoles": "Tableau" // doesn't work | |
# } | |
http://127.0.0.1:8088/auth/admin/realms/app/users |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment