Authenticate as the User
Authenticate as the User
Notes:
After User creation, all API calls will require an oauth token
Protecting Fingerprints
Protecting fingerprints, or marking them as “protected”, not only prevents their eventual expiration, it also ensures the fingerprint is not popped off the list in the event that the user has exceeded the overall limit.
If protecting an existing fingerprint, ensure that is inactive (is_active=false)
If the fingerprint is active, deactivate it by performing the OAuth call with is_active=false in the payload
POST /v3.1/oauth/{{user_id}}
POST /v3.1/oauth/{{user_id}} with the following payload parameters
is_active = true
is_protected = true
refresh_token
scope
Last updated