/api/v1/ops/operations/ingestion-runs
POST
/api/v1/ops/operations/ingestion-runs
const url = 'https://example.com/api/v1/ops/operations/ingestion-runs';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"date":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/ops/operations/ingestion-runs \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "date": "example" }'Authorizations
Section titled “Authorizations ”Request Body
Section titled “Request Body ”object
date
string
Example generated
{ "date": "example"}object
date
string
Example generated
{ "date": "example"}object
date
string
Example generated
{ "date": "example"}Responses
Section titled “ Responses ”OK