Skip to main content

AUTH.SIGNIN

POST 

To signin and return a JWT for the session. User can signin with password, otp and invite

Request

Body

    oneOf
    action stringrequired

    Default value: auth.signin

    The action

    grant_type required

    Possible values: [password]

    The method of which to signin

    email stringrequired

    The email

    password stringrequired

    The password

    aud string

Responses

Auth JWT Token response

Schema
    data object
    id_token string

    The JWT ID Token

    refresh_token string

    The refresh token to be kept private

    token_type string

    The token type, set to be bearer

    token_info object

    Token info

    ttl integer

    The JWT time to live (ttl) from the issued at time (iat)

    exp integer

    The JWT expire time

    iat integer

    The JWT issued at time

    aud string

    The audience

    _userkey string

    The user key

    project_id string

    The Project ID

    user_profile object

    The user profile

    _userkey string

    The user's Key

    email string

    The user's email

    email_verified boolean

    Boolean indicating email is verified

    display_name string

    The full display name

    photo_url string

    The photo URL

    username string

    The username

    aud string

    The 'aud' associated to this authentication

    roles string[]

    Array of roles for this authentication

    auth_types string[]

    Array of auth_types for this authentication

Loading...