VerifyTfaCode

Returns (Task)

Verify two factor authentification one time password.

Name Description
onetimePassword

Verify Tfa Code

Example in C#

// Returns: Boolean
var item = await client.VerifyTfaCode(String onetimePassword);

Example in CURL



           curl -X POST \
               https://keepapi.feenicshosting.com/api/currentuser/tfa \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -D '{
                       "$type":"Feenics.Keep.WebApi.Model.TfaRequest, Feenics.Keep.WebApi.Model",
                       "CurrentPassword":"CURRENT_PASSWORD_HERE",
                       "OneTimePassword":null,
                       "Action":4
                   }'