Tree BG 1
Tree
Tree
TreeLeaves
TreeLeaves
Cat IdleGrassGrassRockRock

Beta Workflows Schedules Endpoints

Create and manage workflow schedules.

Get Schedules

GET /v1/workflows/schedules

200

Successful Response

A list of workflow schedules

Playground

Test the endpoints live

curl https://api.mistral.ai/v1/workflows/schedules \
 -X GET \
 -H 'Authorization: Bearer YOUR_APIKEY_HERE'

200

{
  "schedules": [
    {
      "input": null,
      "schedule_id": "ipsum eiusmod"
    }
  ]
}

Schedule Workflow

POST /v1/workflows/schedules

201

Successful Response

schedule_id
*string

The ID of the schedule

Playground

Test the endpoints live

curl https://api.mistral.ai/v1/workflows/schedules \
 -X POST \
 -H 'Authorization: Bearer YOUR_APIKEY_HERE' \
 -H 'Content-Type: application/json' \
 -d '{
  "schedule": {
    "input": null
  }
}'

201

{
  "schedule_id": "ipsum eiusmod"
}

Unschedule Workflow

DELETE /v1/workflows/schedules/{schedule_id}

Playground

Test the endpoints live

curl https://api.mistral.ai/v1/workflows/schedules/{schedule_id} \
 -X DELETE \
 -H 'Authorization: Bearer YOUR_APIKEY_HERE' \
 -H 'Content-Type: application/json'