AlmaG3st
AlmaG3st

Reputation: 371

Keycloak email verification mail sending manually?

Im trying to manually send email verification mail using this API

/{realm}/users/{id}/execute-actions-email

But it does not work, here you can check their documentation API

On second screenshot you can see how Im sending request (in body I have actions parameter) and as you can see Im receiving error 400API

But if I will send the request with empty body, then it worksAPI

The problem is it triggers all kind of required actions and thats not acceptable. What to do?

Upvotes: 0

Views: 39

Answers (1)

csbrogi
csbrogi

Reputation: 529

Simply use

[
    "VERIFY_EMAIL"
]

as body

Upvotes: 0

Related Questions