All Products
Search
Document Center

Edge Security Acceleration:ListUserRoutines

Last Updated:Nov 15, 2025

Queries the functions created in your account and the maximum number of functions supported by your plan. You can call this operation to perform a paged query.

Operation description

You can call this operation to perform a paged query to query all functions created in your account, the maximum number of functions supported by the billing plan that you use, and the number of functions already created. You can specify PageNumber and PageSize to control the number of entries to be returned in the response and specify SearchKeyWord to perform a fuzzy search to filter specific routine names.

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:ListUserRoutinesnone
*All Resources
*
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
PageNumberlongNo

The page number of the returned page. Default value: 1. Valid values: 1 to 10.

ListUserRoutines
PageSizelongNo

The number of entries per page. Valid values: 1 to 20.

20
SearchKeyWordstringNo

The keyword used for fuzzy search.

hello

Response parameters

ParameterTypeDescriptionExample
object

Schema of Response

RequestIdstring

The request ID.

1234567890ABCDEF
PageNumberlong

The page number. Pages start from page 1. Default value: 1.

1
PageSizelong

The number of entries per page.

20
TotalCountlong

The total count.

3
QuotaRoutineNumberlong

The maximum number of functions supported by the billing plan.

20
UsedRoutineNumberlong

The number of functions that were already created.

5
Routinesarray<object>

The functions.

RoutineItemobject

The functions.

RoutineNamestring

The function name.

hello
Descriptionstring

The function description.

ZWRpdCByb3V0aW5lIGNvbmZpZyBkZXNjcmlwdGlvbg==
CreateTimestring

The time when the function was created.

2024-03-11T01:23:02.883361712Z
HasAssetsboolean

Specifies whether to include the Assets file tag.

false
DefaultRelatedRecordstring

The default record name to access.

serverless-test-2.154edaf6.er.aliyun-esa.net

Examples

Sample success responses

JSONformat

{
  "RequestId": "1234567890ABCDEF",
  "PageNumber": 1,
  "PageSize": 20,
  "TotalCount": 3,
  "QuotaRoutineNumber": 20,
  "UsedRoutineNumber": 5,
  "Routines": [
    {
      "RoutineName": "hello",
      "Description": "ZWRpdCByb3V0aW5lIGNvbmZpZyBkZXNjcmlwdGlvbg==",
      "CreateTime": "2024-03-11T01:23:02.883361712Z",
      "HasAssets": false,
      "DefaultRelatedRecord": "serverless-test-2.154edaf6.er.aliyun-esa.net"
    }
  ]
}

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.
400InvalidParameterThe specified parameter is invalid.The specified parameter is invalid.
400InternalOperationErrorFailed to call the service. Try again later or contact technical support.Failed to call the service. Try again later or contact technical support.
400ParameterNotExistThe specified parameter does not exist. Check your configurations and try again.The specified parameter does not exist. Check your configurations and try again.

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