All Products
Search
Document Center

Edge Security Acceleration:ListVideoProcessings

Last Updated:Nov 07, 2025

Queries the video processing configurations of a site.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • For mandatory resource types, indicate with a prefix of * .
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
esa:ListVideoProcessingsnone
*Site
acs:esa:{#regionId}:{#accountId}:site/{#SiteId}
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
SiteIdlongYes

The website ID, which can be obtained by calling the ListSites operation.

12345
ConfigIdlongNo

The configuration ID, You can call the ListVideoProcessings operation to obtain the ID.

35281609698****
ConfigTypestringNo

The configuration type. Use this parameter to query global configurations or feature configurations. This parameter takes effect only if the functionName parameter is passed.

Valid values:

  • global
  • rule
global
RuleNamestringNo

The rule name. This parameter takes effect only when parameter functionName is specified.

rule_example
PageNumberintegerNo

The page number. Default value: 1.

1
PageSizeintegerNo

The number of entries per page. Maximum value: 500. Default value: 500.

20
SiteVersionintegerNo

The version number of the website configurations. You can use this parameter to specify a version of your website to apply the feature settings. By default, version 0 is used.

1

Response parameters

ParameterTypeDescriptionExample
object

The response parameters.

RequestIdstring

The request ID.

CB1A380B-09F0-41BB-A198-72F8FD6DA2FE
Configsarray<object>

The configurations.

configsobject

The details about the configurations.

ConfigIdlong

The configuration ID.

234123**
SiteVersioninteger

The version number of the website configurations.

1
Sequenceinteger

The order in which the rule is executed. The smaller the value, the higher the priority.

1
RuleEnablestring

Indicates whether the rule is enabled. Valid values:

  • on
  • off
on
Rulestring

The rule content.

(http.host eq \"video.example.com\")
RuleNamestring

The rule name.

rule_example
ConfigTypestring

The type of the configuration. Valid values:

  • global: global configuration.
  • rule: rule configuration.
global
VideoSeekEnablestring

Video seeking. Valid values:

  • on
  • off
on
FlvVideoSeekModestring

FLV seeking. Valid values:

  • by_byte: Seek by byte.
  • by_time: Seek by time.
by_byte
Mp4SeekStartstring

Customize the mp4 start parameter.

start
Mp4SeekEndstring

Customize the mp4 end parameter.

end
FlvSeekStartstring

The custom start parameter for FLV files.

start
FlvSeekEndstring

The custom end parameter for FLV files.

end
PageNumberinteger

The page number of the returned page.

1
PageSizeinteger

The number of entries per page.

10
TotalCountinteger

The total number of entries returned.

55
TotalPageinteger

The total number of pages returned.

3

Examples

Sample success responses

JSONformat

{
  "RequestId": "CB1A380B-09F0-41BB-A198-72F8FD6DA2FE",
  "Configs": [
    {
      "ConfigId": 0,
      "SiteVersion": 1,
      "Sequence": 1,
      "RuleEnable": "on",
      "Rule": "(http.host eq \\\"video.example.com\\\")\n",
      "RuleName": "rule_example",
      "ConfigType": "global",
      "VideoSeekEnable": "on",
      "FlvVideoSeekMode": "by_byte",
      "Mp4SeekStart": "start",
      "Mp4SeekEnd": "end",
      "FlvSeekStart": "start",
      "FlvSeekEnd": "end"
    }
  ],
  "PageNumber": 1,
  "PageSize": 10,
  "TotalCount": 55,
  "TotalPage": 3
}

Error codes

HTTP status codeError codeError messageDescription
400InternalExceptionFailed to call the service. Try again later or contact technical support.Failed to call the service. Try again later or contact technical support.
400InvalidParameter.FunctionNameThe specified feature does not exist. Specify a valid feature name based on the related documentation.The specified feature does not exist. Specify a valid feature name based on the related documentation.

For a list of error codes, visit the Service error codes.