Publish an extraction flow
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/extraction-flows/{flow_id}/publish/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/extraction-flows/{flow_id}/publish/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/extraction-flows/{flow_id}/publish/ \
--header 'Authorization: Bearer <token>'{
"message": "Publish started.",
"pipeline_run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Extraction Flows
Publish an extraction flow
Queue a pipeline run that publishes previously-extracted data to the downstream indexes without re-running extraction.
Only valid for flows whose
publish_modeismanual_publish. Forauto_publishflows, publishing happens automatically at the end of eachrun-sync, so calling this endpoint is unnecessary.
POST
/
projects
/
{project_id}
/
extraction-flows
/
{flow_id}
/
publish
/
Publish an extraction flow
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/extraction-flows/{flow_id}/publish/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/extraction-flows/{flow_id}/publish/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/extraction-flows/{flow_id}/publish/ \
--header 'Authorization: Bearer <token>'{
"message": "Publish started.",
"pipeline_run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Authorizations
BearerAuthTokenAuth
Use Authorization: Bearer
Path Parameters
UUID of the project
UUID of the extraction flow