Documentation | API | Endpoints | Quiz | Get
QuizGet

The endpoint allows you to get the quiz. To identify a quiz url (long/short) is required. A json object is required to be posted as raw body. See example request, response objects and authentication process. The full API URL is :

POST https://authified.com/api/v1/quiz/get

Query Parameters
Name Type Description
/url string A valid quiz "long_url" or "short_url" - (required)
Please, to send request.
{
    "url": ""
}
{
    "http_status_code": 200,
    "query_reference_id": "",
    "response_time": 0,
    "query_at": "",
    "quiz": {
        "first_name": "",
        "last_name": "",
        "email_address": "",
        "mobile_number": "",
        "long_url": "",
        "tiny_url": "",
        "expired": 0,
        "expires_at": "",
        "created_at": "",
        "template": {
            "template_id": "",
            "_comment": "\"template_id\" will be returned only, if used existing template.",
            "template_name": "",
            "is_custom": 0,
            "created_at": "",
            "list": {
                "driver_licence_upload": 0,
                "passport_upload": 0,
                "other_id_upload": 0,
                "selfie_upload": 0,
                "bank_statement_upload": 0,
                "receipt_upload": 0,
                "utility_bill_upload": 0,
                "void_check_upload": 0,
                "address_submit": 0,
                "mobile_phone_submit": 0,
                "email_address_submit": 0,
                "date_of_birth_submit": 0,
                "ssn_submit": 0,
                "canadian_bank_validation": 0,
                "usa_canadian_bank_validation": 0,
                "agreement_sign": 0,
                "facebook_login": 0,
                "google_login": 0,
                "device_finger_print": 0,
                "custom_application": 0,
                "canadian_bank_statement": 0,
                "utility_statement": 0
            }
        }
    }
}

Last modified: 4 years ago
curl --location --request POST 'https://authified.com/api/v1/quiz/get' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Api-Key: ' \
--header 'Signature: ' \
--data-raw '{
    "url": "",
}'
POST /api/v1/quiz/get HTTP/1.1
Host: https://authified.com
Accept: application/json
Content-Type: application/json
Api-Key: 
Signature: 
Content-Length: 
{
    "url": "",
}
var settings = {
    "url": "https://authified.com/api/v1/quiz/get",
    "method": "POST",
    "timeout": 0,
    "headers": {
      "Accept": "application/json",
      "Content-Type": "application/json",
      "Api-Key": "",
      "Signature": ""
    },
    "data": JSON.stringify({"url":""}),
  };
  
  $.ajax(settings).done(function (response) {
    console.log(response);
  });
var data = JSON.stringify({"url":""});

var xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener("readystatechange", function() {
  if(this.readyState === 4) {
    console.log(this.responseText);
  }
});

xhr.open("POST", "https://authified.com/api/v1/quiz/get");
xhr.setRequestHeader("Accept", "application/json");
xhr.setRequestHeader("Content-Type", "application/json");
xhr.setRequestHeader("Api-Key", "");
xhr.setRequestHeader("Signature", "");

xhr.send(data);
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => "https://authified.com/api/v1/quiz/get",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS =>'{
    "url": "",
}',
  CURLOPT_HTTPHEADER => array(
    "Accept: application/json",
    "Content-Type: application/json",
    "Api-Key: ",
    "Signature: "
  ),
));
$response = curl_exec($curl);
$http_code = curl_getinfo($url, CURLINFO_HTTP_CODE);
curl_close($url);
if ($http_code === 200):
    echo $response;
else:
    echo "Un-expected server response http_code($http_code)<br/>$response";
endif;
<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://authified.com/api/v1/quiz/get');
$request->setMethod(HTTP_Request2::METHOD_POST);
$request->setConfig(array(
  'follow_redirects' => TRUE
));
$request->setHeader(array(
  'Accept' => 'application/json',
  'Content-Type' => 'application/json',
  'Api-Key' => '',
  'Signature' => ''
));
$request->setBody('{\n "url": ""}');
try {
  $response = $request->send();
  if ($response->getStatus() === 200) {
    echo $response->getBody();
  }
  else {
    echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
    $response->getReasonPhrase();
  }
}
catch(HTTP_Request2_Exception $e) {
  echo 'Error: ' . $e->getMessage();
}