Skip to content

Get Authentication Status

GET
/api/v1/auth/status
curl --request GET \
--url https://example.com/api/v1/auth/status

Get the current authentication configuration status

Successful Response

Media typeapplication/json
AuthStatusResponse

Response model for authentication status.

object
authenticated
required
Authenticated
boolean
auth_type
required
Auth Type
string
workspace
required
Workspace
string
client_id
required
Client Id
string
Examplegenerated
{
"authenticated": true,
"auth_type": "example",
"workspace": "example",
"client_id": "example"
}