v3
latestOpenAPI 3.0.12026-07-31240345599.7 KBIntegration actions
Create integration action
Creates an integration action.<br> <br> Permissions required: Permission to create an integration action:
- the user has read-only administrative right.
- the user is the admin of the team that the integration belongs to.
post/api/{cloudId}/v1/integrations/{integrationId}/actions
Path parameters
integrationIdstring required
ID of the integration
Request body
Example request
{
"type": "create",
"name": "Create Alert2",
"domain": "alert",
"direction": "incoming",
"filter": {
"conditionMatchType": "match-all",
"conditions": []
},
"fieldMappings": {
"note": "",
"description": "{{message}}",
"source": "Email",
"message": "{{subject}}",
"priority": "{{priority}}",
"tags": [],
"alias": "",
"details": {
"From": "{{from_address}}"
},
"user": "",
"actions": [],
"entity": ""
}
}Response
Returned if the request is successful.
Example response
{
"filter": {
"conditionMatchType": "match-all",
"conditions": []
},
"fieldMappings": {
"note": "",
"description": "{{message}}",
"source": "Email Updated",
"message": "{{subject}}",
"priority": "{{priority}}",
"tags": [],
"alias": "",
"details": {
"From": "{{from_address}}"
},
"user": "",
"actions": [],
"entity": ""
}
}