For the complete documentation index, see llms.txt. This page is also available as Markdown.

DQ Auth API

The DQ Auth API authenticates users and generates JWT and OAuth tokens

Create an authentication request to sign in with username and password and generate a JWT token

post

Creates an authentication request to sign in with username and password and generate a JWT token.

Sign in with your username and password to generate a JWT token

Body
usernamestringOptional

Username

Example: admin
passwordstringOptional

Password

Example: <password>
issstringOptional

Issuer (tenant name)

Example: public
Responses
200

JWT token is generated

*/*
post/v3/auth/signin

Create an authentication request to sign in with username and password and generate an OAuth token

post

Creates an authentication request to sign in with username and password and generate an OAuth token.

Sign in with your username and password to generate an OAuth token

Body
usernamestringOptional

Username

Example: admin
passwordstringOptional

Password

Example: <password>
issstringOptional

Issuer (tenant name)

Example: public
Responses
200

Oauth token is generated

*/*
post/v3/auth/oauth/signin

Last updated

Was this helpful?