List actions for a group
GET/:customer_id/groups/:group_id/sentinel-actions
List all actions configured for a group
Request
Path Parameters
customer_id Customer Idrequired
Id of the tenant
group_id Group Idrequired
Id of the group
Responses
- 200
- 400
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
actions object[]
id uuidrequired
Action id
target Targetrequired
Target of the action
action_type Action Typerequired
Action type
description Descriptionrequired
Action description
cron_schedule Cron Schedulerequired
Cron schedule
cron_is_local_time Cron Is Local Timerequired
Wether the cron pattern should be interpreted as user's local time or server UTC time
notification_emails string[]required
Notification emails
notification_webhooks string[]required
Notification webhooks
enabled Enabledrequired
Wether the action is enabled
included_users uuid[]required
Included users
excluded_users uuid[]required
Excluded users
{
"actions": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"target": "string",
"action_type": "string",
"description": "string",
"cron_schedule": "string",
"cron_is_local_time": true,
"notification_emails": [
"string"
],
"notification_webhooks": [
"string"
],
"enabled": true,
"included_users": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"excluded_users": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
]
}
]
}
Validation error
- application/json
- Schema
- Example (from schema)
Schema
message Messagerequired
errors undefined[]nullablerequired
{
"message": "string",
"errors": [
null
]
}
Loading...