Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
One batch and every search it spawned, in submission order. Poll this to watch a batch finish.
cURL
curl --request GET \ --url https://api.revcenter.ai/api/bulk/{id} \ --cookie session=
const options = {method: 'GET', headers: {cookie: 'session='}}; fetch('https://api.revcenter.ai/api/bulk/{id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "https://api.revcenter.ai/api/bulk/{id}" headers = {"cookie": "session="} response = requests.get(url, headers=headers) print(response.text)
{ "batch": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "mode": "candidate", "jd_count": 123, "status": "running", "error": "<string>", "created_at": "2023-11-07T05:31:56Z" }, "scans": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "title": "<string>", "status": "queued", "sector": "<string>", "pulled": 123, "target_count": 123, "raw_input": "<string>", "created_at": "2023-11-07T05:31:56Z", "closed_at": "2023-11-07T05:31:56Z", "error": "<string>" } ] }
{ "error": "Sign in required" }
{ "error": "Scan not found" }
A signed-in workspace session, sent as a browser cookie. Requests must include credentials, and act on the session's active workspace.
The batch ID.
The batch and its searches.
Show child attributes