Skip to main content
GET
/
user-authenticators
Get Authenticators
curl --request GET \
  --url https://api.authsignal.com/v1/client/user-authenticators \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.authsignal.com/v1/client/user-authenticators"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.authsignal.com/v1/client/user-authenticators', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.authsignal.com/v1/client/user-authenticators",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.authsignal.com/v1/client/user-authenticators"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.authsignal.com/v1/client/user-authenticators")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.authsignal.com/v1/client/user-authenticators")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
[
  {
    "userAuthenticatorId": "user_authenticator_123",
    "verificationMethod": "PASSKEY",
    "createdAt": "2024-05-13T04:59:02.640Z",
    "lastVerifiedAt": "2024-07-13T02:43:37.640Z",
    "verifiedAt": "2024-05-13T04:59:17.640Z",
    "isDefault": true,
    "webauthnCredential": {
      "credentialId": "credential_123",
      "deviceId": "device_123",
      "name": "iCloud Keychain",
      "aaguid": "fbfc3007-154e-4ecc-8c0b-6e020557d7bd",
      "aaguidMapping": {
        "name": "iCloud Keychain",
        "svgIconDark": "data:image/svg+xml;base64...",
        "svgIconLight": "data:image/svg+xml;base64..."
      },
      "credentialBackedUp": true,
      "credentialDeviceType": "multiDevice",
      "authenticatorAttachment": "platform"
    }
  }
]
{
"error": "<string>",
"errorDescription": "<string>",
"errorCode": "<string>"
}

Authorizations

Authorization
string
header
required

Use a short-lived token obtained from the Server API's Track Action endpoint. The token is valid for 10 minutes and should be passed in the Authorization header as 'Bearer {token}'.

Response

OK

userAuthenticatorId
string
required
authenticatorType
enum<string>
required
Available options:
OOB,
OTP,
SECURITY_KEY,
PASSKEY,
PUSH,
DEVICE,
PROVIDER
createdAt
string<date-time>
required
verificationMethod
enum<string>
required
Available options:
SMS,
AUTHENTICATOR_APP,
EMAIL_MAGIC_LINK,
EMAIL_OTP,
PUSH,
DEVICE,
SECURITY_KEY,
PASSKEY,
VERIFF,
IPROOV,
PALM_BIOMETRICS_RR,
IDVERSE
email
string

A masked version of the user's email.

phoneNumber
string

A masked version of the user's phone number.

verifiedAt
string<date-time>
lastVerifiedAt
string<date-time>
oobChannel
enum<string>
Available options:
EMAIL_MAGIC_LINK,
EMAIL_OTP,
SMS
previousSmsChannel
enum<string>

The channel that was last used by the user to complete an SMS challenge.

Available options:
DEFAULT,
WHATSAPP
webauthnCredential
object