curl --request POST \
--url https://{BaseURL}/api/public/v1/assets/{assetId}/execute \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"jobSource": "<string>",
"parameters": {}
}
'{
"data": {
"jobId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"assetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"jobSource": "<string>",
"jobSourceId": "<string>",
"startedAt": "<string>",
"finishedAt": "<string>"
}
}Queue a run for a source, model, or orchestration
curl --request POST \
--url https://{BaseURL}/api/public/v1/assets/{assetId}/execute \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"jobSource": "<string>",
"parameters": {}
}
'{
"data": {
"jobId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"assetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"jobSource": "<string>",
"jobSourceId": "<string>",
"startedAt": "<string>",
"finishedAt": "<string>"
}
}jobSource (for example API or Manual) and optional parameters; the job is always attributed to the authenticated user.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Job created and queued.
Show child attributes