Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Name of the job
Body
application/json
curl --request POST \
--url https://api.blaxel.ai/v0/jobs/{jobId}/executions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"executionId": "<string>",
"id": "<string>",
"jobId": "<string>",
"tasks": [
{}
],
"workspaceId": "<string>"
}'{
"metadata": {
"cluster": "<string>",
"completedAt": "<string>",
"createdAt": "<string>",
"deletedAt": "<string>",
"expiredAt": "<string>",
"id": "<string>",
"job": "<string>",
"startedAt": "<string>",
"updatedAt": "<string>",
"workspace": "<string>"
},
"spec": {
"parallelism": 123,
"tasks": [
{
"conditions": [
{
"executionReason": "<string>",
"message": "<string>",
"reason": "<string>",
"severity": "<string>",
"state": "<string>",
"type": "<string>"
}
],
"metadata": {
"completedAt": "<string>",
"createdAt": "<string>",
"name": "<string>",
"scheduledAt": "<string>",
"startedAt": "<string>",
"updatedAt": "<string>"
},
"spec": {
"maxRetries": 123,
"timeout": "<string>"
},
"status": "<string>"
}
],
"timeout": 123
},
"stats": {
"cancelled": 123,
"failure": 123,
"retried": 123,
"running": 123,
"success": 123,
"total": 123
},
"status": "<string>",
"tasks": [
{
"conditions": [
{
"executionReason": "<string>",
"message": "<string>",
"reason": "<string>",
"severity": "<string>",
"state": "<string>",
"type": "<string>"
}
],
"metadata": {
"completedAt": "<string>",
"createdAt": "<string>",
"name": "<string>",
"scheduledAt": "<string>",
"startedAt": "<string>",
"updatedAt": "<string>"
},
"spec": {
"maxRetries": 123,
"timeout": "<string>"
},
"status": "<string>"
}
]
}Creates a new execution for a job by name.
curl --request POST \
--url https://api.blaxel.ai/v0/jobs/{jobId}/executions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"executionId": "<string>",
"id": "<string>",
"jobId": "<string>",
"tasks": [
{}
],
"workspaceId": "<string>"
}'{
"metadata": {
"cluster": "<string>",
"completedAt": "<string>",
"createdAt": "<string>",
"deletedAt": "<string>",
"expiredAt": "<string>",
"id": "<string>",
"job": "<string>",
"startedAt": "<string>",
"updatedAt": "<string>",
"workspace": "<string>"
},
"spec": {
"parallelism": 123,
"tasks": [
{
"conditions": [
{
"executionReason": "<string>",
"message": "<string>",
"reason": "<string>",
"severity": "<string>",
"state": "<string>",
"type": "<string>"
}
],
"metadata": {
"completedAt": "<string>",
"createdAt": "<string>",
"name": "<string>",
"scheduledAt": "<string>",
"startedAt": "<string>",
"updatedAt": "<string>"
},
"spec": {
"maxRetries": 123,
"timeout": "<string>"
},
"status": "<string>"
}
],
"timeout": 123
},
"stats": {
"cancelled": 123,
"failure": 123,
"retried": 123,
"running": 123,
"success": 123,
"total": 123
},
"status": "<string>",
"tasks": [
{
"conditions": [
{
"executionReason": "<string>",
"message": "<string>",
"reason": "<string>",
"severity": "<string>",
"state": "<string>",
"type": "<string>"
}
],
"metadata": {
"completedAt": "<string>",
"createdAt": "<string>",
"name": "<string>",
"scheduledAt": "<string>",
"startedAt": "<string>",
"updatedAt": "<string>"
},
"spec": {
"maxRetries": 123,
"timeout": "<string>"
},
"status": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Name of the job
successful operation
Was this page helpful?