POST
/
session
/
multi-tenant
curl --request POST \
  --url https://api.liquidindex.dev/session/multi-tenant \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "project_id": "<string>",
  "services": [
    "File Upload"
  ],
  "customer_id": "<string>",
  "success_url": "<string>",
  "cancel_url": "<string>"
}'
{
  "url": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
project_id
string
required

The Project ID to query from

services
enum<string>[]
required

The services to be used in the session

Available options:
File Upload
customer_id
string
required

The Customer ID to query from

success_url
string
required

The URL to redirect to after the session is complete

cancel_url
string
required

The URL to redirect to if the session is cancelled

Response

200
application/json
Successful query response
url
string

The URL to redirect to after the session is complete