GET
/
v2
/
session-config
curl --request GET \
  --url https://{projectId}.frontendapi.corbado.io/v2/session-config \
  --header 'Authorization: Bearer <token>'
{
  "useSessionManagement": true,
  "shortSessionCookieConfig": {
    "domain": "<string>",
    "secure": true,
    "sameSite": "lax",
    "path": "<string>",
    "lifetimeSeconds": 123
  },
  "sessionTokenCookieConfig": {
    "domain": "<string>",
    "secure": true,
    "sameSite": "lax",
    "path": "<string>",
    "lifetimeSeconds": 123
  },
  "frontendApiUrl": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

tbd

The response is of type object.