The endpoint allows you to get the quested template. To identify a template template_id
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/template/get
Name | Type | Description |
---|---|---|
/template_id | int | A valid template id to get - (required) |
{
"template_id": ""
}
{
"http_status_code": 200,
"query_reference_id": "",
"response_time": 0,
"query_at": "",
"template_id": "",
"template_name": "",
"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
},
"created_at": "",
"updated_at": ""
}
curl --location --request POST 'https://authified.com/api/v1/template/get' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Api-Key: ' \
--header 'Signature: ' \
--data-raw '{
"template_id": "",
}'
POST /api/v1/template/get HTTP/1.1
Host: https://authified.com
Accept: application/json
Content-Type: application/json
Api-Key:
Signature:
Content-Length:
{
"template_id": "",
}
var settings = {
"url": "https://authified.com/api/v1/template/get",
"method": "POST",
"timeout": 0,
"headers": {
"Accept": "application/json",
"Content-Type": "application/json",
"Api-Key": "",
"Signature": ""
},
"data": JSON.stringify({"template_id": ""}),
};
$.ajax(settings).done(function (response) {
console.log(response);
});
var data = JSON.stringify({"template_id": ""});
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/template/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/template/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 =>'{
"template_id": ""
}',
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/template/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 "template_id": "",\n}');
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();
}