Scripts / Actions: Execute
Description
It executes the latest version of the Script on the Server.
HTTP Request
POST /api/v1beta0/user/envId/scripts/scriptId/actions/execute/
Parameters
Name | Required | Description | Location |
---|---|---|---|
envId integer |
Yes | The ID of the Environment scoping this request. |
path |
scriptId integer |
Yes | The ID of a Script object. |
path |
Request body
The JSON representation of a ScriptExecutionRequest object.
The body must be a valid ScriptExecutionRequest object. Example value:
{
"blocking": true,
"runAs": "string",
"server": {
"id": "string"
},
"timeout": 1,
"variables": [
{
"name": "string",
"value": "string"
}
]
}
Successful Response (Status 202)
The JSON representation of a ScriptExecution object.
The API replies with a ScriptExecutionDetailsResponse object. Example response body:
{
"data": {
"id": "string",
"logEntry": {
"id": "string"
},
"server": {
"id": "string"
},
"status": "running"
},
"errors": [
{
"code": "string",
"message": "string"
}
],
"meta": {
"sample": "string"
},
"warnings": [
{
"code": "string",
"message": "string"
}
]
}
Other Response Messages
HTTP Status Code | Reason | Response Model |
---|---|---|
400 | A client-side error was made. |
An ApiErrorResponse object |
401 | The request was not authenticated. |
An ApiErrorResponse object |
403 | Insufficient permissions. |
An ApiErrorResponse object |
404 | Resource not found. |
An ApiErrorResponse object |
409 | Conflict with current state. |
An ApiErrorResponse object |
422 | This request was well-formed but was rejected due to semantic errors. |
An ApiErrorResponse object |
500 | A server-side error occurred. |
An ApiErrorResponse object |
501 | This feature is not implemented in Scalr. |
An ApiErrorResponse object |
503 | The service is currently unavailable. |
An ApiErrorResponse object |