Skip to content

Browser Session

Operations

Method Endpoint Description
POST /me/browser-session Create a single-use link that signs a browser in as the current user

Create a single-use link that signs a browser in as the current user

POST /me/browser-session

Returns a short-lived, single-use URL. Opening it exchanges the ticket for a session cookie. Intended for instances with no identity provider, where the browser has no other way to authenticate.

Operation ID: CreateBrowserSession

Responses

Status Description Content-Type Schema
200 OK application/json BrowserSessionResponse
400 BrowserSession request is invalid (Bad Request). application/json StandardErrorResponse
401 Unauthorized access. application/json StandardErrorResponse
403 Forbidden access. application/json StandardErrorResponse
404 BrowserSession not found. application/json StandardErrorResponse
409 BrowserSession data conflict. Data has changed since last read. application/json StandardErrorResponse
500 Something went wrong while processing BrowserSession. application/json StandardErrorResponse
default Unexpected error. application/json StandardErrorResponse

Schemas

BrowserSessionResponse

Properties

Property Type Required Description
ExpiresIn integer
Ticket string
URL string

StandardErrorResponse

Error response details.

Properties

Property Type Required Description
Code string HTTP status code of the response.
Message string Message returned with the response.