v1
latestOpenAPI 3.0.02026-07-24161215397.4 KBAuth
Sign in a user
Authenticates a member with email and password. On success, returns the signed-in user profile (_id, email, name, image).
Required scopes: flex.user.auth.signin
post/api/v2/organizations/{orgSlug}/auth/signin
Path parameters
orgSlugstring required
organization slug
Request body
Example request
{
"email": "example@gmail.com",
"password": "Pa$$w0rd"
}Response
Example response
{
"_id": "6a59d080856fad4ee4195303",
"email": "example@gmail.com",
"name": "John Doe",
"image": "John Doe"
}