Browse Source
Merge pull request #375 from istiak101/patch-2
docs: fix send_update_account example
pull/379/head
Richard Nemeth
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
README.md
|
@ -221,7 +221,7 @@ consents = keycloak_admin.consents_user(user_id="user-id-keycloak") |
|
|
|
|
|
|
|
|
# Send User Action |
|
|
# Send User Action |
|
|
response = keycloak_admin.send_update_account(user_id="user-id-keycloak", |
|
|
response = keycloak_admin.send_update_account(user_id="user-id-keycloak", |
|
|
payload=json.dumps(['UPDATE_PASSWORD'])) |
|
|
|
|
|
|
|
|
payload=['UPDATE_PASSWORD']) |
|
|
|
|
|
|
|
|
# Send Verify Email |
|
|
# Send Verify Email |
|
|
response = keycloak_admin.send_verify_email(user_id="user-id-keycloak") |
|
|
response = keycloak_admin.send_verify_email(user_id="user-id-keycloak") |
|
|