POSTAPI key
Force a re-poll
POSTapi.trackingmcp.com/v1/containers/{id}/recheck
Ask the connectors to refresh this box now, rather than waiting for the next cycle.
Path parameters
id
Container id.
Response fields
Derived from the example response.
ok
queued
curl -X POST https://api.trackingmcp.com/v1/containers/ctr_9Fk2mQ/recheck \
-H "Authorization: Bearer tmcp_YOUR_API_KEY"const res = await fetch("https://api.trackingmcp.com/v1/containers/ctr_9Fk2mQ/recheck", {
method: "POST",
headers: {
"Authorization": "Bearer tmcp_YOUR_API_KEY"
}
});
const data = await res.json();import requests
res = requests.post(
"https://api.trackingmcp.com/v1/containers/ctr_9Fk2mQ/recheck",
headers={"Authorization": "Bearer tmcp_YOUR_API_KEY"},
)
data = res.json() Response
{ "ok": true, "queued": true }