Get dashboard overview
curl --request GET \
--url https://api.reconlayer.com/v1/dashboard/overviewimport requests
url = "https://api.reconlayer.com/v1/dashboard/overview"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.reconlayer.com/v1/dashboard/overview', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.reconlayer.com/v1/dashboard/overview",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.reconlayer.com/v1/dashboard/overview"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.reconlayer.com/v1/dashboard/overview")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.reconlayer.com/v1/dashboard/overview")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"metrics": {
"totalCases": 123,
"openCases": 123,
"reconciledCases": 123,
"needsReviewCases": 123,
"unreconciledCases": 123,
"exceptionCases": 123,
"invalidEvidenceCount": 123,
"failedFileRows": 123
},
"workloadTimeline": [
{
"date": "<string>",
"casesCreated": 123,
"importsCreated": 123,
"open": 123,
"resolved": 123,
"review": 123,
"exceptions": 123
}
],
"verdictDistribution": [
{
"verdict": "<string>",
"count": 123
}
],
"exceptionRootCauses": [
{
"exceptionType": "<string>",
"count": 123
}
],
"highPriorityExceptions": [
{
"caseId": "<string>",
"externalReference": "<string>",
"exceptionType": "<string>",
"unexplainedDelta": "<string>",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"recentImportFailures": [
{
"batchId": "<string>",
"originalFileName": "<string>",
"failedRows": 123,
"createdAt": "2023-11-07T05:31:56Z"
}
],
"coverageWarnings": [
{
"caseId": "<string>",
"externalReference": "<string>",
"missingCoverage": [
"<string>"
]
}
]
}{
"error": "<string>",
"message": "<string>",
"issues": [
{}
],
"details": {},
"upstreamStatus": 123
}๐ Dashboard Data
Get dashboard overview
GET
/
v1
/
dashboard
/
overview
Get dashboard overview
curl --request GET \
--url https://api.reconlayer.com/v1/dashboard/overviewimport requests
url = "https://api.reconlayer.com/v1/dashboard/overview"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.reconlayer.com/v1/dashboard/overview', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.reconlayer.com/v1/dashboard/overview",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.reconlayer.com/v1/dashboard/overview"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.reconlayer.com/v1/dashboard/overview")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.reconlayer.com/v1/dashboard/overview")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"metrics": {
"totalCases": 123,
"openCases": 123,
"reconciledCases": 123,
"needsReviewCases": 123,
"unreconciledCases": 123,
"exceptionCases": 123,
"invalidEvidenceCount": 123,
"failedFileRows": 123
},
"workloadTimeline": [
{
"date": "<string>",
"casesCreated": 123,
"importsCreated": 123,
"open": 123,
"resolved": 123,
"review": 123,
"exceptions": 123
}
],
"verdictDistribution": [
{
"verdict": "<string>",
"count": 123
}
],
"exceptionRootCauses": [
{
"exceptionType": "<string>",
"count": 123
}
],
"highPriorityExceptions": [
{
"caseId": "<string>",
"externalReference": "<string>",
"exceptionType": "<string>",
"unexplainedDelta": "<string>",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"recentImportFailures": [
{
"batchId": "<string>",
"originalFileName": "<string>",
"failedRows": 123,
"createdAt": "2023-11-07T05:31:56Z"
}
],
"coverageWarnings": [
{
"caseId": "<string>",
"externalReference": "<string>",
"missingCoverage": [
"<string>"
]
}
]
}{
"error": "<string>",
"message": "<string>",
"issues": [
{}
],
"details": {},
"upstreamStatus": 123
}Headers
Minimum string length:
1Minimum string length:
1Response
Default Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
โI
