Skip to main content

Quick Info

caution

Warning
Using this service to retrieve contact information is not recommended. Please use Quick Search instead.

This API is used to retrieve additional details in the Detail section if available in a report.

Note: This service is only applicable for calls that have entered the queue, and should not be used for retrieving contact information in other cases.

Parameters

DescriptionDefined DataSample DataRequired[**]/Logical[*]Parameters
Unique ID obtained from Quick Search-16244299033.75565**cuid

Sample Invocation

Show Full Source Code PHP

	<?php

$curl = curl_init();

curl_setopt_array($curl, array(
CURLOPT_URL => 'http://192.168.51.20/api/v4/reports/quick/info',
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 =>'{
"cuid":"1624299033.75565"
}',
CURLOPT_HTTPHEADER => array(
'X-APIKEY: 9UV0BWKRL83PYIH9Gv1fI85d41lO4S932EeX3wHC47sHjMJOMG',
'Authorization: Basic c2FkcjpTYWRyQDEyMw==',
'Content-Type: application/json'
),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>