Generate signed url to login user via url (widget)

POST /widget/me/signed-url

Responses

  • 200 application/json

    Return the signed url

    Hide response attribute Show response attribute object
    • signedUrl string
  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
    • message string
  • 403

    Forbidden - You don't have permission to access this route

POST /widget/me/signed-url
curl \
 --request POST 'https://domain.tld/api/v2/widget/me/signed-url' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "signedUrl": "https://domain.tld/api/v2/auth/signed-url/4491?token=abc123"
}
Response examples (401)
{
  "message": "Unauthorized."
}