Querying the Playbook Instance List
Function
This API is used to query the playbook instance list.
Calling Method
For details, see Calling APIs.
URI
GET /v1/{project_id}/workspaces/{workspace_id}/soc/playbooks/instances
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID. |
workspace_id |
Yes |
String |
Workspace ID. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
status |
No |
String |
Playbook instance status. (RUNNING: Running; FINISHED: Successful; FAILED: Failed; RETRYING: Retrying; TERMINATING: Terminating; TERMINATED: Terminated) |
name |
No |
String |
Instance name. |
playbook_name |
No |
String |
Playbook name. |
dataclass_name |
No |
String |
Data class name. |
dataobject_name |
No |
String |
Data object name. |
trigger_type |
No |
String |
Trigger type. TIMER: The playbook is triggered at a scheduled time; EVENT: The playbook is triggered by an event. |
from_date |
No |
String |
Start time for the query. |
to_date |
No |
String |
End time for the query. |
limit |
Yes |
Integer |
The maximum number of records can be returned on each page for a pagination query. The value starts from 1. |
offset |
Yes |
Integer |
Pagination query parameter. This parameter specifies the start position of the query result. The value starts from 0. |
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
Yes |
String |
User token. It can be obtained by calling the IAM API used to obtain a user token. The value of X-Subject-Token in the response header is the user token. |
content-type |
Yes |
String |
application/json;charset=UTF-8 |
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
X-request-id |
String |
Request ID. Format: request_uuid-timestamp-hostname. |
Parameter |
Type |
Description |
---|---|---|
count |
Integer |
Total number. |
instances |
Array of PlaybookInstanceInfo objects |
Playbook instance list information. |
Parameter |
Type |
Description |
---|---|---|
id |
String |
Playbook instance ID. |
name |
String |
Playbook instance name. |
project_id |
String |
Project ID. |
playbook |
PlaybookInfoRef object |
Playbook information. |
dataclass |
DataclassInfoRef object |
Data class information. |
dataobject |
DataobjectInfo object |
Data object details. |
status |
String |
Playbook instance status. (RUNNING: Running; FINISHED: Successful; FAILED: Failed; RETRYING: Retrying; TERMINATING: Terminating; TERMINATED: Terminated) |
trigger_type |
String |
Trigger type. TIMER: The playbook is triggered at a scheduled time; EVENT: The playbook is triggered by an event. |
start_time |
String |
Creation time. |
end_time |
String |
Update time. |
Parameter |
Type |
Description |
---|---|---|
id |
String |
Playbook ID. |
version_id |
String |
Playbook version ID. |
name |
String |
Name. |
version |
String |
Version. |
Parameter |
Type |
Description |
---|---|---|
id |
String |
Data class ID. |
name |
String |
Data class name. |
Parameter |
Type |
Description |
---|---|---|
id |
String |
ID. |
create_time |
String |
Creation time. |
update_time |
String |
Update time. |
project_id |
String |
Project ID. |
dataclass_id |
String |
Data class ID. |
name |
String |
Name. |
content |
String |
Data content. |
Status code: 400
Parameter |
Type |
Description |
---|---|---|
X-request-id |
String |
Request ID. Format: request_uuid-timestamp-hostname. |
Parameter |
Type |
Description |
---|---|---|
code |
String |
Error code. |
message |
String |
Error description. |
Example Requests
None
Example Responses
Status code: 200
Response to a successful request.
{ "count" : 41, "instances" : [ { "id" : "909494e3-558e-46b6-a9eb-07a8e18ca62f", "name" : "MyXXX", "project_id" : "909494e3-558e-46b6-a9eb-07a8e18ca62f", "playbook" : { "id" : "909494e3-558e-46b6-a9eb-07a8e18ca62f", "version_id" : "909494e3-558e-46b6-a9eb-07a8e18ca62f", "name" : "909494e3-558e-46b6-a9eb-07a8e18ca62f", "version" : "v1.1.1" }, "dataclass" : { "id" : "909494e3-558e-46b6-a9eb-07a8e18ca62f", "name" : "909494e3-558e-46b6-a9eb-07a8e18ca62f" }, "dataobject" : { "id" : "909494e3-558e-46b6-a9eb-07a8e18ca62f", "name" : "909494e3-558e-46b6-a9eb-07a8e18ca62f" }, "status" : "TERMINATED", "trigger_type" : "string", "start_time" : "2021-01-30T23:00:00Z+0800", "end_time" : "2021-01-30T23:00:00Z+0800" } ] }
Status Codes
Status Code |
Description |
---|---|
200 |
Response to a successful request. |
400 |
Response message for failed requests. |
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.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot