GetActionExecution Method

Description

Retrieves information about a single action execution.

HTTP Request

GET https://api.skeddly.com/api/ActionExecutions/<id>

URL Parameters

id

The ID of the action execution.

Type: string

Required: Yes

Returns

An ActionExecution object.

Sample Request

GET /api/ActionExecutions/ae-00000001 HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>

Sample Response

{
    "actionExecutionId": "ae-00000001",
    "status": "complete",
    "startDate": "2016-06-01T12:00:00Z",
    "endDate": "2016-06-01T12:03:00Z",
    "result": {
        "code": 0,
        "text": "Execution succeeded"
    },
    "trigger": "schedule",
    "actionId": "a-00000001",
    "actionVersionId": "av-00000001",
    "actionType": "amazon-start-ec2-instance",
    "actionName": "Start My Instances",
    "timeZoneId": "UTC",
    "credentialId": "cred-00000001"
}

Last updated