Update authentication configuration

PUT
/api/v2/security/authentication

Update the authentication methods (JWT / NTLM).

AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Example: 'Bearer {token}'

In: header

Request Body

application/json

The updated authentication configuration.

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X PUT "https://example.com/api/v2/security/authentication" \  -H "Content-Type: application/json" \  -d '{    "jwtAuth": true,    "ntlmAuth": true  }'
"string"