Get Trigger's Activation Detail
- Print
- PDF
Get Trigger's Activation Detail
- Print
- PDF
Article Summary
Share feedback
Thanks for sharing your feedback!
Overview
Gets detailed information about activation result of a specific trigger.
Request
Request URL
GET {CLOUD_FUNCTIONS_API_URL}/triggers/{triggerName}/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 | Required | Type | Description |
---|---|---|---|
triggerName | Yes | string | Name of the trigger |
activationId | Yes | string | Activation result ID value |
Request Parameters
Parameter | Required | Type | Restrictions | Description |
---|---|---|---|---|
platform | No | string | (classic | vpc) | Platform type. It is processed as default classic. |
Response
Response Body
{
"content": {
"activationId": "string",
"duration": "number",
"start": "timestamp",
"end": "timestamp",
"logs": [],
"name": "string",
"namespace": "string",
"response": {
"result": {
},
"status": "string",
"success": "boolean"
},
"subject": "string"
}
}
Property | Type | Description | Note |
---|---|---|---|
content.activationId | string | Activation result ID value | |
content.duration | number | Run time (ms) | |
content.start | timestamp | Time of request for execution of the trigger | |
content.end | timestamp | action end time | |
content.logs | string array | Log | |
content.name | string | Name of the trigger | |
content.response | Action's response | ||
content.subject | string |
Was this article helpful?