Skip to content

Update a Task

Terminal window
https://mapi.storyblok.com/v1/spaces/:space_id/tasks/:task_id

This endpoint can be used to update tasks.

  • :space_id required number

    Numeric ID of a space

  • :task_id required number

    The task id

curl "https://mapi.storyblok.com/v1/spaces/606/tasks/124" \
-X PUT \
-H "Authorization: YOUR_OAUTH_TOKEN" \
-H "Content-Type: application/json" \
-d "{\"task\":{\"name\":\"My Updated Task Name\",\"task_type\":\"webhook\",\"webhook_url\":\"https://www.storyblok.com\"}}"