Core API
Accounts
Login
1 min
code examples curl location globoff 'https //api forter secure com/v2/accounts/login/{id}' \\ \ header 'accept application/json' \\ \ header 'content type application/json' \\ \ data '{"body" {"accountdata" {},"accountid" "string","additionalauthenticationmethod" {},"connectioninformation" {"customerip" "string","useragent" "string"},"eventtime" 0,"loginmethodtype" "string\<password | sms | social | email link otp | auth token refresh | apple | mfa code refresh | email magic link | passkey | qr | other>","loginstatus" "string\<success | failed | blocked by merchant | account does not exist>","merchantidentifiers" {},"userinput" {"additionalinformation" {},"customersignedinusingsocialnetworkaccount" {},"inputtype" "string\<username | email | phone | social>"}}}'var myheaders = new headers(); myheaders append("accept", "application/json"); myheaders append("content type", "application/json"); var raw = json stringify({ "body" { "accountdata" {}, "accountid" "string", "additionalauthenticationmethod" {}, "connectioninformation" { "customerip" "string", "useragent" "string" }, "eventtime" 0, "loginmethodtype" "string\<password | sms | social | email link otp | auth token refresh | apple | mfa code refresh | email magic link | passkey | qr | other>", "loginstatus" "string\<success | failed | blocked by merchant | account does not exist>", "merchantidentifiers" {}, "userinput" { "additionalinformation" {}, "customersignedinusingsocialnetworkaccount" {}, "inputtype" "string\<username | email | phone | social>" } } }); var requestoptions = { method 'post', headers myheaders, body raw, redirect 'follow' }; fetch("https //api forter secure com/v2/accounts/login/{id}", requestoptions) then(response => response text()) then(result => console log(result)) catch(error => console log('error', error));require "uri" require "json" require "net/http" url = uri("https //api forter secure com/v2/accounts/login/{id}") https = net http new(url host, url port) https use ssl = true request = net http post new(url) request\["accept"] = "application/json" request\["content type"] = "application/json" request body = json dump({ "body" { "accountdata" {}, "accountid" "string", "additionalauthenticationmethod" {}, "connectioninformation" { "customerip" "string", "useragent" "string" }, "eventtime" 0, "loginmethodtype" "string\<password | sms | social | email link otp | auth token refresh | apple | mfa code refresh | email magic link | passkey | qr | other>", "loginstatus" "string\<success | failed | blocked by merchant | account does not exist>", "merchantidentifiers" {}, "userinput" { "additionalinformation" {}, "customersignedinusingsocialnetworkaccount" {}, "inputtype" "string\<username | email | phone | social>" } } }) response = https request(request) puts response read body import requests import json url = "https //api forter secure com/v2/accounts/login/{id}" payload = json dumps({ "body" { "accountdata" {}, "accountid" "string", "additionalauthenticationmethod" {}, "connectioninformation" { "customerip" "string", "useragent" "string" }, "eventtime" 0, "loginmethodtype" "string\<password | sms | social | email link otp | auth token refresh | apple | mfa code refresh | email magic link | passkey | qr | other>", "loginstatus" "string\<success | failed | blocked by merchant | account does not exist>", "merchantidentifiers" {}, "userinput" { "additionalinformation" {}, "customersignedinusingsocialnetworkaccount" {}, "inputtype" "string\<username | email | phone | social>" } } }) headers = { 'accept' 'application/json', 'content type' 'application/json' } response = requests request("post", url, headers=headers, data=payload) print(response text) responses // example adaptiveauthaccountsresponse { "accountid" "e520 ba9a 367 60b", "correlationid" "hgj7512345h3de", "decisionreason" "", "forterdecision" "", "merchantpolicyid" "0ee8ba28a8654c659addbae9253b707c", "recommendation" "", "verificationmethod" { "correlationid" "hgj7512345h3de", "status" "frictionless", "statuscode" "100", "statusmessage" "verification code sent", "type" "three ds", "verificationid" "345h3dehgj7512", "verificationspecificdata" { "threeds" {}, "email" {}, "phone" {} } } }// bad request (often missing a required parameter) // unauthorized (no valid api key provided) // not found (the requested item doesn't exist) // server error (something went wrong on forter's end)