Querying a Schedule
Function
This API is used to query a schedule.
URI
GET /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. |
|
instance_id |
Yes |
String |
Instance ID. |
|
task_id |
Yes |
String |
Task ID, the unique identifier of a task. |
Request Parameters
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
X-Auth-Token |
Yes |
String |
User token, which can be obtained by calling the IAM API (value of X-Subject-Token in the response header). |
Response Parameters
Status code: 200
|
Parameter |
Type |
Description |
|---|---|---|
|
dispatch_id |
String |
Schedule ID. |
|
task_id |
String |
ID of a task associated with a schedule. |
|
start_datetime |
Integer |
Start time of a scheduling plan. Range: 946684800000–2147512447000 |
|
period |
String |
Unit of the execution period of a schedule. If the Cron expression is used, the value is empty. |
|
dispatch_interval |
Integer |
Interval for executing a schedule. |
|
created_date |
Integer |
Time when a schedule is created. |
|
last_modified_date |
Integer |
Last modification time of a schedule. |
|
remark |
String |
Remarks of a schedule. |
|
use_quartz_cron |
Boolean |
Whether the schedule uses the Cron expression. |
|
cron |
String |
Cron expression for a schedule. |
|
cron_timezone |
String |
Time zone information. |
Status code: 400
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code. |
|
error_msg |
String |
Error message. |
Status code: 404
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code. |
|
error_msg |
String |
Error message. |
Status code: 500
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code. |
|
error_msg |
String |
Error message. |
Example Requests
None
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 Codes
|
Status Code |
Description |
|---|---|
|
200 |
OK |
|
400 |
Bad Request |
|
404 |
Not Found |
|
500 |
Internal Server Error |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.