Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions automate/set-schedule.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,15 @@ An example request response will contain:

The important field is `id` (with value `10850624` in the above example). In the second step, you need to activate
the schedule via the [Activate Schedule API call](https://api.keboola.com/?service=scheduler#scheduler/tag/schedules/POST/schedules)
with he following body:
with the following body:

```json
{
"configurationId": "10850624"
}
```

See an [example](https://documenter.getpostman.com/view/3086797/77h845D#130cbfc4-4dd5-4f6d-99c0-2444c48ee551)):
See an [example](https://documenter.getpostman.com/view/3086797/77h845D#130cbfc4-4dd5-4f6d-99c0-2444c48ee551):

```bash
curl --location --request POST 'https://scheduler.azure.keboola.com/schedules' \
Expand Down Expand Up @@ -229,15 +229,15 @@ You'll obtain the following example:
```

The created configuration has id `10852379`. You can now [Activate the Schedule](https://api.keboola.com/?service=scheduler#scheduler/tag/schedules/POST/schedules)
with he following body:
with the following body:

```json
{
"configurationId": "10852379"
}
```

See an [example](https://documenter.getpostman.com/view/3086797/77h845D#130cbfc4-4dd5-4f6d-99c0-2444c48ee551)):
See an [example](https://documenter.getpostman.com/view/3086797/77h845D#130cbfc4-4dd5-4f6d-99c0-2444c48ee551):

```bash
curl --location --request POST 'https://scheduler.keboola.com/schedules' \
Expand Down
Loading