Get Action's Activation Detail
- Print
- PDF
Get Action's Activation Detail
- Print
- PDF
Article Summary
Share feedback
Thanks for sharing your feedback!
Overview
Gets detailed information about the activation result of a specific action.
Request
Request URL
GET {CLOUD_FUNCTIONS_API_URL}/packages/{packageName}/actions/{actionName}/activations/{activationId}
x-ncp-apigw-timestamp: {Timestamp}
x-ncp-iam-access-key: {Sub Account Access Key}
x-ncp-apigw-signature-v2: {API Gateway Signature}
Path variables
Parameter | Requirement status | Type | Description |
---|---|---|---|
packageName | Yes | string | - Package name When searching for an action that does not belong to the package, enter - in packageName. |
actionName | Yes | string | Action name |
activationId | Yes | string | Execution result ID value |
Request parameters
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
platform | No | string | (classic | vpc) | - Platform type Processed as default classic |
Response
Response bodies
{
"content": {
"activationId": "string",
"duration": "number",
"start": "timestamp",
"end": "timestamp",
"logs": [],
"name": "string",
"namespace": "string",
"response": {
"result": {
},
"status": "string",
"success": "boolean"
},
"subject": "string"
}
}
Item | Type | Description | Remarks |
---|---|---|---|
content.activationId | string | Execution result ID value | |
content.duration | number | Execution time (ms) | |
content.start | timestamp | Time when activation has started | |
content.end | timestamp | Time when action activation has ended | |
content.logs | string array | Log | |
content.name | string | Action name | |
content.namespace | string | Name space of the user | |
content.response | Action result | ||
content.subject | string | Information on the user who executed the action |
Was this article helpful?