Skip to main content
GET
/
auth
/
signed-login-url
Create a temporary signed URL which logins the user into the messenger without having to provide any username or password. Useful for embedding the builtin messenger into iframes. URL is valid for three minutes.
curl --request GET \
  --url https://1-some-client.some-server.healvi-chat/third-party/v1/auth/signed-login-url \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "url": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Success

data
object