Read GHL import evidence
curl --request GET \
--url https://api.getnexor.ai/api/public/crm-management/gohighlevel/import-status \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getnexor.ai/api/public/crm-management/gohighlevel/import-status"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.getnexor.ai/api/public/crm-management/gohighlevel/import-status', 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.getnexor.ai/api/public/crm-management/gohighlevel/import-status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.getnexor.ai/api/public/crm-management/gohighlevel/import-status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.getnexor.ai/api/public/crm-management/gohighlevel/import-status")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getnexor.ai/api/public/crm-management/gohighlevel/import-status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"provider": "gohighlevel",
"workflow_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"connection_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"location_id": "<string>",
"connection_status": "<string>",
"evidence": "stored_run_history",
"evidence_scope": "connection",
"task_execution_verified": false,
"worker_enabled": true,
"recurring_blockers": [
"<string>"
],
"last_checked_at": "<string>",
"last_imported_at": "<string>",
"last_error_code": "<string>",
"recurring_enabled": true,
"configuration_valid": true,
"configuration_errors": [
"<string>"
],
"runs": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"mode": "<string>",
"status": "<string>",
"has_error": true,
"error_code": "<string>",
"stats": {
"scanned": 1,
"eligible": 1,
"created": 1,
"existed": 1,
"unchanged": 1,
"failed": 1,
"out_of_scope": 1,
"before_cutover": 1,
"after_cutover": 1,
"multiple_opportunities": 1,
"dry_run": 1,
"would_suppress_contact": 1,
"would_dnd": 1,
"dnd": 1,
"truncated": true
},
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Read GHL import evidence
Read the latest 20 stored import runs for a connection. Counters can cover several agents; an active connection does not prove that an agent synchronized.
GET
/
crm-management
/
gohighlevel
/
import-status
Read GHL import evidence
curl --request GET \
--url https://api.getnexor.ai/api/public/crm-management/gohighlevel/import-status \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getnexor.ai/api/public/crm-management/gohighlevel/import-status"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.getnexor.ai/api/public/crm-management/gohighlevel/import-status', 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.getnexor.ai/api/public/crm-management/gohighlevel/import-status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.getnexor.ai/api/public/crm-management/gohighlevel/import-status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.getnexor.ai/api/public/crm-management/gohighlevel/import-status")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getnexor.ai/api/public/crm-management/gohighlevel/import-status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"provider": "gohighlevel",
"workflow_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"connection_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"location_id": "<string>",
"connection_status": "<string>",
"evidence": "stored_run_history",
"evidence_scope": "connection",
"task_execution_verified": false,
"worker_enabled": true,
"recurring_blockers": [
"<string>"
],
"last_checked_at": "<string>",
"last_imported_at": "<string>",
"last_error_code": "<string>",
"recurring_enabled": true,
"configuration_valid": true,
"configuration_errors": [
"<string>"
],
"runs": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"mode": "<string>",
"status": "<string>",
"has_error": true,
"error_code": "<string>",
"stats": {
"scanned": 1,
"eligible": 1,
"created": 1,
"existed": 1,
"unchanged": 1,
"failed": 1,
"out_of_scope": 1,
"before_cutover": 1,
"after_cutover": 1,
"multiple_opportunities": 1,
"dry_run": 1,
"would_suppress_contact": 1,
"would_dnd": 1,
"dnd": 1,
"truncated": true
},
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Authorizations
API key for authentication. Keys are prefixed with nxr_live_.
Response
Saved configuration or stored execution evidence.
Available options:
gohighlevel Available options:
stored_run_history, no_stored_runs Available options:
connection Available options:
false Maximum array length:
20Show child attributes
Show child attributes
Last modified on September 21, 2026
⌘I