Resync a compliance profile's carrier status
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync', 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.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"submissions": [
{
"id": "csub_8x7y6z5w4v3u",
"profile_id": "cprof_7h3k9m2p4q1w",
"provider": "tcr_us",
"country_code": "US",
"provider_bundle_id": "BRAND-A1B2C3",
"status": "approved",
"rejected_reason": null,
"submitted_at": "2026-08-07T11:00:00.000Z",
"verified_at": "2026-08-07T12:00:00.000Z",
"last_synced_at": "2026-08-07T12:00:00.000Z",
"created_at": "2026-08-07T11:00:00.000Z",
"updated_at": "2026-08-07T12:00:00.000Z"
}
]
},
"meta": {
"request_id": "req_1a2b3c4d5e6f",
"timestamp": "2026-08-07T12:00:00.000Z"
}
}Compliance
Resync a compliance profile's carrier status
Re-poll every carrier submission on this profile for its latest verification status and roll the results up into the profile’s aggregate status (approved when all carriers verify, partially rejected on a mixed result). Use this to pull a fresh decision without waiting for the scheduled auto-resync. Returns the refreshed submission rows. Owner/admin/developer only.
POST
/
api
/
v1
/
compliance
/
compliance-profiles
/
{id}
/
resync
Resync a compliance profile's carrier status
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync', 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.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/compliance/compliance-profiles/{id}/resync")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"submissions": [
{
"id": "csub_8x7y6z5w4v3u",
"profile_id": "cprof_7h3k9m2p4q1w",
"provider": "tcr_us",
"country_code": "US",
"provider_bundle_id": "BRAND-A1B2C3",
"status": "approved",
"rejected_reason": null,
"submitted_at": "2026-08-07T11:00:00.000Z",
"verified_at": "2026-08-07T12:00:00.000Z",
"last_synced_at": "2026-08-07T12:00:00.000Z",
"created_at": "2026-08-07T11:00:00.000Z",
"updated_at": "2026-08-07T12:00:00.000Z"
}
]
},
"meta": {
"request_id": "req_1a2b3c4d5e6f",
"timestamp": "2026-08-07T12:00:00.000Z"
}
}⌘I