Connector Refresh
Run Connector Refresh
Re-ingest every connector in a slot now
POST
/
connector-refresh
/
run
curl -X POST https://api.clustr-ai.com/api/public/connector-refresh/run \
-H "Authorization: Bearer YOUR_API_KEY"
import requests
requests.post(
"https://api.clustr-ai.com/api/public/connector-refresh/run",
headers={"Authorization": "Bearer YOUR_API_KEY"},
)
await fetch("https://api.clustr-ai.com/api/public/connector-refresh/run", {
method: "POST",
headers: { Authorization: "Bearer YOUR_API_KEY" },
});
{
"success": true,
"data": { "started": true }
}
{
"success": false,
"error": {
"message": "connector refresh is not available",
"code": "FORBIDDEN"
}
}
Refresh every connector in a slot now, outside the
schedule. Starts one import job over the slot
roster; follow it with List Jobs like any manual import.
This spends credits per connector in a slot, the same as the scheduled fire.
403 when the
workspace has no connector slots.curl -X POST https://api.clustr-ai.com/api/public/connector-refresh/run \
-H "Authorization: Bearer YOUR_API_KEY"
import requests
requests.post(
"https://api.clustr-ai.com/api/public/connector-refresh/run",
headers={"Authorization": "Bearer YOUR_API_KEY"},
)
await fetch("https://api.clustr-ai.com/api/public/connector-refresh/run", {
method: "POST",
headers: { Authorization: "Bearer YOUR_API_KEY" },
});
{
"success": true,
"data": { "started": true }
}
{
"success": false,
"error": {
"message": "connector refresh is not available",
"code": "FORBIDDEN"
}
}
⌘I
curl -X POST https://api.clustr-ai.com/api/public/connector-refresh/run \
-H "Authorization: Bearer YOUR_API_KEY"
import requests
requests.post(
"https://api.clustr-ai.com/api/public/connector-refresh/run",
headers={"Authorization": "Bearer YOUR_API_KEY"},
)
await fetch("https://api.clustr-ai.com/api/public/connector-refresh/run", {
method: "POST",
headers: { Authorization: "Bearer YOUR_API_KEY" },
});
{
"success": true,
"data": { "started": true }
}
{
"success": false,
"error": {
"message": "connector refresh is not available",
"code": "FORBIDDEN"
}
}