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
Server API
Get Authenticator Configurations
Gets a list of the authenticators configured for the tenant.
GET
/
authenticators
Copy
Ask AI
curl --request GET \
--url https://api.authsignal.com/v1/authenticators
Copy
Ask AI
[
{
"authenticatorId": "authenticator_123",
"isActive": true,
"verificationMethod": "SMS",
"smsChannel": "WHATSAPP"
}
]
Response
200
application/json
OK
The response is of type object[]
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.authsignal.com/v1/authenticators
Copy
Ask AI
[
{
"authenticatorId": "authenticator_123",
"isActive": true,
"verificationMethod": "SMS",
"smsChannel": "WHATSAPP"
}
]
Assistant
Responses are generated using AI and may contain mistakes.