The SearchMediaWorkflow API searches for media workflows.

Request parameters

Parameter Type Required or not Description
Action String Yes API of the action, system required parameter. Set this parameter to SearchMediaWorkflow.
StateList String No List of media workflow states separated by commas (,). The states include Inactive, Active, and Deleted. The default value is “Inactive, Active, Deleted”.
PageSize Long No Page size. The default value is 20, and the maximum value is 100.
PageNumber Long No Page number. The default value is 1.

Return parameters

Name Type Description
MediaWorkflowList MediaWorkflow[] List of media workflows.
TotalCount Long Total number.
PageSize Long Page size.
PageNumber Long Page number.

Example

Request example

https://mts.cn-hangzhou.aliyuncs.com/?PageSize=1&<public parameter>

Return example

XML

<SearchMediaWorkflowResponse> 
  <PageNumber>1</PageNumber>  
  <MediaWorkflowList> 
    <MediaWorkflow> 
      <CreationTime>2016-04-01T05:38:41Z</CreationTime>  
      <Name>mediaworkflow-test1</Name>  
      <State>Inactive</State>  
      <Topology>{"Activities":{"Act-Start":{"Parameters":{"PipelineId":"130266f58161436a80bf07cb12c8009a","InputFile":"{\"Bucket\": \"panda-vod\",\"Location\": \"oss-cn-hangzhou\"}"},"Type":"Start"},"Act-Report":{"Parameters":{},"Type":"Report"},"Act-Transcode-M3U8":{"Parameters":{"Outputs":"[{\"Object\":\"transcode/{ObjectPrefix}{FileName}\",\"TemplateId\": \"957d1719ee85ed6527b90cf62726cbef\"}]","OutputBucket":"panda-vod-hls","OutputLocation":"oss-cn-hangzhou"},"Type":"Transcode"}},"Dependencies":{"Act-Start":["Act-Transcode-M3U8"],"Act-Report":[],"Act-Transcode-M3U8":["Act-Report"]}}</Topology>  
      <MediaWorkflowId>e00732b977da427d9177a4dee646b1aa</MediaWorkflowId> 
    </MediaWorkflow> 
  </MediaWorkflowList>  
  <TotalCount>339</TotalCount>  
  <PageSize>1</PageSize>  
  <RequestId>691EA73C-3937-4604-8031-580E5931783B</RequestId> 
</SearchMediaWorkflowResponse>

JSON

    {
        "PageNumber": 1,
        "MediaWorkflowList": {
            "MediaWorkflow": [
                {
                    "CreationTime": "2016-04-01T05:38:41Z",
                    "Name": "mediaworkflow-test1",
                    "State": "Inactive",
                    "Topology": "{\"Activities\":{\"Act-Start\":{\"Parameters\":{\"PipelineId\":\"130266f58161436a80bf07cb12c8009a\",\"InputFile\":\"{\\\"Bucket\\\": \\\"panda-vod\\\",\\\"Location\\\": \\\"oss-cn-hangzhou\\\"}\"},\"Type\":\"Start\"},\"Act-Report\":{\"Parameters\":{},\"Type\":\"Report\"},\"Act-Transcode-M3U8\":{\"Parameters\":{\"Outputs\":\"[{\\\"Object\\\":\\\"transcode/{ObjectPrefix}{FileName}\\\",\\\"TemplateId\\\": \\\"957d1719ee85ed6527b90cf62726cbef\\\"}]\",\"OutputBucket\":\"panda-vod-hls\",\"OutputLocation\":\"oss-cn-hangzhou\"},\"Type\":\"Transcode\"}},\"Dependencies\":{\"Act-Start\":[\"Act-Transcode-M3U8\"],\"Act-Report\":[],\"Act-Transcode-M3U8\":[\"Act-Report\"]}}",
                    "MediaWorkflowId": "e00732b977da427d9177a4dee646b1aa"
                }
            ]
        },
        "TotalCount": 339,
        "PageSize": 1,
        "RequestId": "9AB3E295-F459-44C6-A0D4-6370139D0700"
    }