Skip to main content

AuthenticationApi

MethodHTTP requestDescription
LogoutUsingPOSTPOST /api/web/v1/authentication/logoutRemove User Session
RequestPasskeyChallengeUsingPOSTPOST /api/web/v1/authentication/passkeyRequest Passkey Challenge
UserAuthenticateUsingPOSTPOST /api/web/v1/authentication/users/authenticate/{authenticator}/completeAuthenticate User Challenge
UserAuthenticatorQueryUsingPOSTPOST /api/web/v2/authentication/usersQuery User Authenticators
UserChallengeUsingPOSTPOST /api/web/v2/authentication/users/authenticate/{authenticator}Request User Challenge

LogoutUsingPOST

void LogoutUsingPOST (string authorization = null)

Remove User Session

Using the LogoutUsingPOSTWithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

Parameters

NameTypeDescriptionNotes
authorizationstring[optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Successful-
400Bad Request-
401Access denied-
403Forbidden-
404Not Found-
409Conflict-

RequestPasskeyChallengeUsingPOST

PasskeyChallengeResult RequestPasskeyChallengeUsingPOST (PasskeyChallengeParameters passkeyChallengeParameters)

Request Passkey Challenge

Request passkey challenge. This API is deprecated, use /api/web/v2/authentication/users/authenticate/PASSKEY instead.

Example

Using the RequestPasskeyChallengeUsingPOSTWithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

Parameters

NameTypeDescriptionNotes
passkeyChallengeParametersPasskeyChallengeParameters

Return type

PasskeyChallengeResult

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Authenticators retrieved successfully-
400Bad request-
401Access denied-
403Forbidden-
404Not Found-

UserAuthenticateUsingPOST

AuthenticatedResponse UserAuthenticateUsingPOST (string authenticator, UserAuthenticateParameters userAuthenticateParameters, string authorization = null)

Authenticate User Challenge

Example

Using the UserAuthenticateUsingPOSTWithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

Parameters

NameTypeDescriptionNotes
authenticatorstring
userAuthenticateParametersUserAuthenticateParameters
authorizationstring[optional]

Return type

AuthenticatedResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Authenticators retrieved successfully-
400Bad request-
401Access denied-
403Forbidden-
404Not Found-

UserAuthenticatorQueryUsingPOST

UserAuthenticateQueryResponse UserAuthenticatorQueryUsingPOST (UserAuthenticateQueryParameters userAuthenticateQueryParameters)

Query User Authenticators

Example

Using the UserAuthenticatorQueryUsingPOSTWithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

Parameters

NameTypeDescriptionNotes
userAuthenticateQueryParametersUserAuthenticateQueryParameters

Return type

UserAuthenticateQueryResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Authenticators retrieved successfully-
400Bad request-
401Access denied-
403Forbidden-
404Not Found-

UserChallengeUsingPOST

AuthenticatedResponse UserChallengeUsingPOST (string authenticator, UserChallengeParameters userChallengeParameters)

Request User Challenge

Example

Using the UserChallengeUsingPOSTWithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

Parameters

NameTypeDescriptionNotes
authenticatorstring
userChallengeParametersUserChallengeParameters

Return type

AuthenticatedResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Authenticators retrieved successfully-
400Bad request-
401Access denied-
403Forbidden-
404Not Found-