Creating a Schedule
Function
This API is used to create a schedule.
URI
POST /v2/{project_id}/fdi/instances/{instance_id}/tasks/{task_id}/dispatches
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
project_id |
Yes |
String |
Project ID. For details about how to obtain the project ID, see Appendix > Obtaining a Project ID in the ROMA Connect API Reference. Minimum: 1 Maximum: 64 |
|
instance_id |
Yes |
String |
Instance ID. Minimum: 1 Maximum: 64 |
|
task_id |
Yes |
String |
Task ID, the unique identifier of a task. Minimum: 1 Maximum: 64 |
Request Parameters
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
start_datetime |
No |
Integer |
Time when a schedule starts to be executed. Minimum: 0 Maximum: 99999999999999999 |
|
period |
No |
String |
Unit of the execution period of a schedule. If the Cron expression is used, the value is empty.
Minimum: 0 Maximum: 36 |
|
dispatch_interval |
No |
Integer |
Interval for executing a schedule. Minimum: 1 Maximum: 59 |
|
remark |
No |
String |
Remarks of a schedule. Minimum: 8 Maximum: 36 |
|
use_quartz_cron |
No |
Boolean |
Whether the schedule uses the Cron expression.
Minimum: 4 Maximum: 16 |
|
cron |
No |
String |
Cron expression for a schedule. Minimum: 8 Maximum: 255 |
Response Parameters
Status code: 200
|
Parameter |
Type |
Description |
|---|---|---|
|
dispatch_id |
String |
Schedule ID. Minimum: 1 Maximum: 64 |
|
task_id |
String |
ID of a task associated with a schedule. Minimum: 1 Maximum: 64 |
|
start_datetime |
Integer |
Time when a schedule starts to be executed. Minimum: 0 Maximum: 99999999999999999 |
|
period |
String |
Unit of the execution period of a schedule. If the Cron expression is used, the value is empty.
Minimum: 0 Maximum: 36 |
|
dispatch_interval |
Integer |
Interval for executing a schedule. Minimum: 1 Maximum: 59 |
|
created_date |
Integer |
Time when a schedule is created. Minimum: 1 Maximum: 99999999999999999 |
|
last_modified_date |
Integer |
Last modification time of a schedule. Minimum: 1 Maximum: 99999999999999999 |
|
remark |
String |
Remarks of a schedule. Minimum: 8 Maximum: 36 |
|
use_quartz_cron |
Boolean |
Whether the schedule uses the Cron expression.
Minimum: 4 Maximum: 16 |
|
cron |
String |
Cron expression for a schedule. Minimum: 8 Maximum: 255 |
Status code: 400
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code. Minimum: 8 Maximum: 36 |
|
error_msg |
String |
Error message. Minimum: 2 Maximum: 512 |
Status code: 404
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code. Minimum: 8 Maximum: 36 |
|
error_msg |
String |
Error message. Minimum: 2 Maximum: 512 |
Status code: 500
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code. Minimum: 8 Maximum: 36 |
|
error_msg |
String |
Error message. Minimum: 2 Maximum: 512 |
Example Requests
{
"use_quartz_cron" : false,
"remark" : "123",
"start_datetime" : "2020-11-14T07:38:25.609Z",
"period" : "DAY",
"dispatch_interval" : 1
}
Example Responses
Status code: 200
OK
{
"dispatch_id" : "a0f7fa9897da423dadbe8391d7ea7a43",
"task_id" : "15366328208d4d77b76532fe9f4006a6",
"start_datetime" : 1605339505609,
"period" : "DAY",
"dispatch_interval" : 1,
"created_date" : 1605311230685,
"last_modified_date" : 1605311230685,
"remark" : "123",
"use_quartz_cron" : false
}
Status code: 400
Bad Request
{
"code" : 400,
"reason" : {
"error_code" : "FDI.3149",
"error_msg" : "The task ID is empty."
}
}
Status code: 404
Not Found
{
"code" : 404,
"reason" : {
"error_code" : "FDI.3180",
"error_msg" : "This task is not in the project."
}
}
Status Codes
|
Status Code |
Description |
|---|---|
|
200 |
OK |
|
400 |
Bad Request |
|
404 |
Not Found |
|
500 |
Internal Server Error |
Error Codes
See Error Codes.
Last Article: Manually Stopping the Current Task
Next Article: Querying a Schedule
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.