Skip to content
On this page

/auth/{authId}/answer-questions

Accepts a list of answers to the questions presented when an auth has the mfa-required status.

HTTP Request

POST https://api.q2open.io/v1/auth/{authId}/answer-questions

Arguments

ParameterDescription
answersList of answered questions.

Returns

Returns an object with a success property indicating the answers were linked to the auth. Returns an error otherwise.

Example Request

shell
curl "https://api.q2open.io/v1/auth/{authId}/answer-questions" \
  -H "Authorization: Bearer dc220490-e6ee-11e5-8a94-e7385a8d929e" \
  -H "Content-Type: application/json" \
  -d '{
    "answers": [{
      "answer": "Seattle",
      "identifier": "1j5k2l1"
    },
    {
      "answer": "Pickles",
      "identifier": "3buw78h3"
    }]
  }'