You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I would like to have the data to mount the activation and/or password recovery link. With this data I could submit an event to another API or a queuing system that will process the event and be able to send the email through other email services, such as sendgrid, mailchimp and others....
Describe the solution you'd like
Contexts:
Create identity
Fetch register flow
Request
curl -X GET 0.0.0.0:4433/self-service/registration/api -H 'Accept: application/json' | jq
Another option would be to be able to define this setting in the file kratos.json, where according to the settings, it returns the data to generate the link
I am marking this issue as stale as it has not received any engagement from the community or maintainers for a year. That does not imply that the issue has no merit! If you feel strongly about this issue
open a PR referencing and resolving the issue;
leave a comment on it and discuss ideas on how you could contribute towards resolving it;
leave a comment and describe in detail why this issue is critical for your use case;
open a new issue with updated details and a plan for resolving the issue.
Throughout its lifetime, Ory has received over 10.000 issues and PRs. To sustain that growth, we need to prioritize and focus on issues that are important to the community. A good indication of importance, and thus priority, is activity on a topic.
Unfortunately, burnout has become a topic of concern amongst open-source projects.
It can lead to severe personal and health issues as well as opening catastrophic attack vectors.
The motivation for this automation is to help prioritize issues in the backlog and not ignore, reject, or belittle anyone.
If this issue was marked as stale erroneously you can exempt it by adding the backlog label, assigning someone, or setting a milestone for it.
Thank you for your understanding and to anyone who participated in the conversation! And as written above, please do participate in the conversation if this topic is important to you!
Is your feature request related to a problem? Please describe.
I would like to have the data to mount the activation and/or password recovery link. With this data I could submit an event to another API or a queuing system that will process the event and be able to send the email through other email services, such as sendgrid, mailchimp and others....
Describe the solution you'd like
Contexts:
Create identity
Fetch register flow
Request
curl -X GET 0.0.0.0:4433/self-service/registration/api -H 'Accept: application/json' | jq
Response
Submit register flow
Request
curl -X POST "http://0.0.0.0:4433/self-service/registration?flow=6e0c9b4a-3d94-428e-ba36-2f7fa3810e68" -H "Accept: application/json" -H "Content-Type: application/json" -d '{"traits":{"email": "foo@bar.com"}, "method": "password", "password":"foo_bar_123"}' | jq
Response
Activate account
Fetch verification flow
Request
curl -X GET 0.0.0.0:4433/self-service/verification/api -H 'Accept: application/json' | jq
Response
Submit verification flow
Request
curl -X POST "http://0.0.0.0:4433/self-service/verification?flow=8f2ee88f-3d7b-4728-b14e-493fbad79e97" -H "Accept: application/json" -H "Content-Type: application/json" -d '{"email": "foo@bar.com", "method": "link"}' | jq
Response
A clear and concise description of what you want to happen.
When submitting in the method field the value of only_data in the request.
curl -X POST "http://0.0.0.0:4433/self-service/verification?flow=8f2ee88f-3d7b-4728-b14e-493fbad79e97" -H "Accept: application/json" -H "Content-Type: application/json" -d '{"email": "foo@bar.com", "method": "only_data"}' | jq
The answer should give me all the fields I need to create my own verification link, including the tokens.
Example:
Describe alternatives you've considered
Another option would be to be able to define this setting in the file
kratos.json
, where according to the settings, it returns the data to generate the linkThe text was updated successfully, but these errors were encountered: