Login Link Webhook
A one-time login link (Magic Login Link) can be requested from the application login page. Upon submission by a User
, the details will be sent via webhook. See the Webhook Events Overview for more general information.
ID: Webhook ID
Event: user_login_link
Target: Includes unqiue User
ID as id
Body: The link and validity period in ISO 8601 format.
Example
{
"id": 123456,
"event":"user_login_link",
"target":{
"type":"User",
"id":123456
},
"body":{
"link":"https://platform.website.com/login?token=abc123",
"valid_until":"2020-08-14T17:41:47+00:00"
}
}