API reference
Server API
- Overview
- POSTTrack Action
- GETGet Action
- GETQuery Actions
- PATCHUpdate Action
- GETGet User
- PATCHUpdate User
- DELDelete User
- POSTEnroll Verified Authenticator
- GETGet Authenticators
- DELDelete Authenticator
- POSTInitiate Challenge
- POSTVerify Challenge
- POSTClaim Challenge
- POSTValidate Challenge
- GETGet Challenge
- GETGet Authenticator Configurations
Client API
- Overview
- GETGet Authenticators
- GETGet Authenticator Configurations
- SMS
- Email OTP
- Email magic link
- Authenticator app
- Passkey
- Push
- Device
- iProov (Face Biometrics)
Management API
- Overview
- GETGet Tenant
- Action Configurations
- Rules
- Custom Lists
- Custom Data Points
- Theme
Call Connect API
- Caller Authentication
Terminal API
- Payment Session
Management API
Get Tenant
Retrieves tenant information.
GET
/
tenant
Copy
Ask AI
curl --request GET \
--url https://api.authsignal.com/v1/management/tenant
Copy
Ask AI
{
"tenantId": "<string>",
"allowDisablingMfa": true,
"hideAuthsignalLogo": true,
"customDomain": "<string>",
"redirectOnSessionExpiry": true,
"allowDeletingUserAuthenticators": true,
"disableRecoveryCodes": true,
"skipRecoveryCodesOnProgrammaticEnrollment": true,
"hideRecoveryCodesOnEnrollment": true
}
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.authsignal.com/v1/management/tenant
Copy
Ask AI
{
"tenantId": "<string>",
"allowDisablingMfa": true,
"hideAuthsignalLogo": true,
"customDomain": "<string>",
"redirectOnSessionExpiry": true,
"allowDeletingUserAuthenticators": true,
"disableRecoveryCodes": true,
"skipRecoveryCodesOnProgrammaticEnrollment": true,
"hideRecoveryCodesOnEnrollment": true
}
Assistant
Responses are generated using AI and may contain mistakes.