Skip to main content
POST
/
v1
/
sso_token
curl
curl -X POST https://my_sql_node.com/v1/sso_token \
    -H "Content-Type: application/json" \
    -d '{
        "id_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
        "database": "retail_analytics"
    }'
{
  "id_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
  "database": "retail_analytics"
}

Documentation Index

Fetch the complete documentation index at: https://docs.ocient.com/llms.txt

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

Body

application/json
database
string
required

Target database for connection after successful authentication. This database must be accessible to the user identified by the SSO token.

id_token
string

OpenID identifier token received from the OpenID provider after successful authentication. You must provide the id_token or access_token body parameters, but not both.

access_token
string

OpenID access token received from the OpenID provider after successful authentication. You must provide the id_token or access_token body parameters, but not both.

Response

200 - application/json

Response

id_token
string
database
string
Last modified on May 20, 2026