Queries all files of a script of an application version.
Debugging
Request headers
This operation uses only the common request headers. For more information, see Common request parameters.
Request syntax
GET /v4/openapi/app-groups/[appGroupIdentity]/apps/[appVersionId]/sort-scripts/[scriptName]/file-names HTTP/1.1
Request parameters
Parameter | Type | Position | Required | Example | Description |
---|---|---|---|---|---|
appGroupIdentity | String | Path | Yes | my_app |
The name or ID of the application. |
appVersionId | String | Path | Yes | 123456 |
The version number of the application. |
scriptName | String | Path | Yes | file_names |
The name of the script. |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
requestId | String | ABCDEFGH |
The ID of the request. |
result | Array of fileInfos |
The files of the script. |
|
createTime | String | 2020-04-02 20:21:14 |
The time when the script file was created. |
fileName | String | my_cava_script.cava |
The name of the script file. |
modifyTime | String | 2020-04-02 21:21:14 |
The time when the script file was last modified. |
Examples
Sample requests
GET /v4/openapi/app-groups/my_app/apps/123456/sort-scripts/abc/file-names
Sample success responses
XML
format
<requestId>ABCDEFGH</requestId>
<result>
<fileName>my_cava_script.cava</fileName>
<pathName>src</pathName>
<createTime>2020-04-02 20:21:14</createTime>
<modifyTime>2020-04-02 21:21:14</modifyTime>
</result>
JSON
format
{
"requestId": "ABCDEFGH",
"result": {
"fileName": "my_cava_script.cava",
"pathName": "src",
"createTime": "2020-04-02 20:21:14",
"modifyTime": "2020-04-02 21:21:14"
}
}
Sample error response
```
Error response
{
"requestId" : "ABCDEFGH",
"code":"ResourceNotFound",
"message":"The specified script not found.",
"httpCode":404
}
```
Error codes
For a list of error codes, visit the API Error Center.