From 31e51e394f26b254fa8f24524a284ed1e07bc42c Mon Sep 17 00:00:00 2001 From: Ice Lake <30789544+istiak101@users.noreply.github.com> Date: Fri, 2 Sep 2022 18:43:55 +0600 Subject: [PATCH] docs: fix send_update_account example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3558d30..1d4a55e 100644 --- a/README.md +++ b/README.md @@ -221,7 +221,7 @@ consents = keycloak_admin.consents_user(user_id="user-id-keycloak") # Send User Action response = keycloak_admin.send_update_account(user_id="user-id-keycloak", - payload=json.dumps(['UPDATE_PASSWORD'])) + payload=['UPDATE_PASSWORD']) # Send Verify Email response = keycloak_admin.send_verify_email(user_id="user-id-keycloak")