A response with the ID, nonce and other information related to the session. The nonce is short-lived and should be immediately passed to the endpoint that will use the session.

interface SessionCreateResultItem {
    clientId?: string;
    id: number;
    nonce: string;
    status: SessionStatus;
    type?: SessionType;
}

Properties

clientId?: string

Client ID in identity provider. Returned only if the session was created using client credentials

id: number

ID of the session

nonce: string

Nonce to be passed to the internal service that will bind the session

Current status of the session

Values reserved for future use