Linkless with polling (MFA)
Handle MFA Challenges
Receiving the statusMfaQuestion
from the /link/connection/status endpoint means that the connection is waiting for an input.
The next step is to provide the MFA answer (usually a code) by calling /link/authentication/mfa/answer with the Link_token and an answer.
Example Request:
{
"link_token": "<link_token>",
"answer": "000111"
}
Handle Invalid Credentials
Receiving the statusInvalidCredentials
from the /link/connection/status endpoint means that the connection cannot be established.
The next step is to provide valid credentials by calling again /link/connect with the Link_token and proper credentials.
Updated about 1 month ago