Skip to main content
POST
https://api-gw.verolabs.co/api/authen
/
self-service
/
login
Submit password credentials to a login flow
curl --request POST \
  --url https://api-gw.verolabs.co/api/authen/self-service/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "csrf_token": "<string>",
  "password_identifier": "jsmith@example.com",
  "password": "<string>"
}
'
{
  "session_token": "<string>",
  "session": {
    "id": "<string>",
    "active": true,
    "identity": {
      "id": "<string>",
      "traits": {}
    },
    "tokenized": "<string>"
  },
  "identity": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.oms.verolabs.co/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

flow
string
required

Ory flow id returned by the corresponding create flow endpoint.

Body

application/json
method
enum<string>
required
Available options:
password
csrf_token
string
required
password_identifier
string<email>
required
password
string<password>
required

Response

Successful login flow response. The app reads session_token from this payload.

session_token
string
session
object
identity
object