post https://api.tetrascience.com/v1/pipeline/process/
This endpoint processes a list of files by using a specified pipeline. It processes the latest version of each file only.
Log in to see full request history
Responses
This endpoint processes a list of files by using a specified pipeline. It processes the latest version of each file only.
xxxxxxxxxx
11curl --location --request POST \
'https://api.tetrascience.com/v1/pipeline/process/8592187a-d3ed-4410-8ffb-ee47826bebf7' \
--header 'x-org-slug: <ORG SLUG>' \
--header 'ts-auth-token: <JWT TOKEN>' \
--header 'Content-Type: application/json' \
--data-raw '{
"fileIds": [
"650bc88a-e90c-48c7-a349-65dcc756b0a4",
"18384a5f-9007-4028-85cd-e191a04a71d5"
]
}'
xxxxxxxxxx
13{
"success": [
{
"fileId": "650bc88a-e90c-48c7-a349-65dcc756b0a4",
"workflowId": "b935b198-b1e1-48da-9536-ce38962e74dd"
},
{
"fileId": "18384a5f-9007-4028-85cd-e191a04a71d5",
"workflowId": "2fa4ab1d-38a4-4f18-90ba-cf0a1424fbd2"
}
],
"error": []
}