| Name | Method | Endpoint |
|---|---|---|
| Create a Schedule. | POST | /api/v2/team/{team}/schedule |
| Delete a Schedule. | DELETE | /api/v2/team/{team}/schedule/{scheduleId} |
| Retrieve a Schedule. | GET | /api/v2/team/{team}/schedule/{scheduleId} |
| Retrieve Calendars for Schedules by Dates. | GET | /api/v2/team/{team}/schedule/calendars |
| Search for Schedules | GET | /api/v2/team/{team}/schedule/query |
| Apply a Schedule. | PUT | /api/v2/team/{team}/schedule |
| Validate a Schedules CRON. | GET | /api/v2/team/{team}/schedule/validate-cron |
POST /api/v2/team/{team}/schedule
| Name | Type | Required | Description | Notes | Example |
|---|---|---|---|---|---|
| team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
| Schema | Required |
|---|---|
| WorkflowSchedule | true |
Note: this section and the documentation around what is required is still actively being updated.
No authorization required
application/json*/*DELETE /api/v2/team/{team}/schedule/{scheduleId}
| Name | Type | Required | Description | Notes | Example |
|---|---|---|---|---|---|
| team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
| scheduleId | String | true | Defaults to null. | scheduleId_example |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
No authorization required
Not definedNot definednull (empty response body)
GET /api/v2/team/{team}/schedule/{scheduleId}
| Name | Type | Required | Description | Notes | Example |
|---|---|---|---|---|---|
| team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
| scheduleId | String | true | Defaults to null. | scheduleId_example |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
No authorization required
Not defined*/*GET /api/v2/team/{team}/schedule/calendars?schedules=,fromDate=789,toDate=789
| Name | Type | Required | Description | Notes | Example |
|---|---|---|---|---|---|
| team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
| schedules | List | true | Defaults to null. | ||
| fromDate | Long | true | Defaults to null. | 789 | |
| toDate | Long | true | Defaults to null. | 789 |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
No authorization required
Not defined*/*GET /api/v2/team/{team}/schedule/query?statuses=active,archived,types=cron,advancedCron,workflows=,limit=10,page=0
| Name | Type | Required | Description | Notes | Example |
|---|---|---|---|---|---|
| team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
| limit | Integer | true | Result Size | Defaults to 10. | 10 |
| page | Integer | true | Page Number | Defaults to 0. | 0 |
| statuses | List | false | List of statuses to filter for. Defaults to all. | Defaults to null. | active,archived |
| types | List | false | List of types to filter for. Defaults to all. | Defaults to null. | cron,advancedCron |
| workflows | List | false | List of workflows to filter for. | Defaults to null. |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
No authorization required
Not defined*/*PUT /api/v2/team/{team}/schedule
| Name | Type | Required | Description | Notes | Example |
|---|---|---|---|---|---|
| team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
| Schema | Required |
|---|---|
| WorkflowSchedule | true |
Note: this section and the documentation around what is required is still actively being updated.
No authorization required
application/json*/*GET /api/v2/team/{team}/schedule/validate-cron?cron=cron_example
| Name | Type | Required | Description | Notes | Example |
|---|---|---|---|---|---|
| cron | String | true | A CRON expression to validate | Defaults to null. | cron_example |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
No authorization required
Not defined*/*