Sign In

In the below schema only password seems required but also an identifier must be provided. For example:

Basic w/ email
{
  email: "[email protected]",
  password: "RAW_PASSWORD"
}
Cookie
session

Request Body

password
string
Zorunlu

User's password

connection
string

If provided user credentials will be checked from the provided connection. NOTE: this will override connection param provided in authorization request and default connection

email
string

Required if no identifier passed or when identifier is email

identifier
string

Field name to look up user. Make sure to include it in request body. For ex: If identifier=email also include email field in request body with the user's email address.

phone_number
string

Required if identifier is phone_number

q
string

PlusAuth CQL query to lookup user in an advanced way. For example with the following query user will be fetched if metadata.ssn matches the given value. metadata.ssn = "${userSsn}"

username
string

Required if identifier is username

POST
/signin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Loading...