events_rules_create
POST/api/v3//events/rules/
NotificationRule Viewset
Request
- application/json
Body
required
name stringrequired
Possible values: non-empty
transports uuid[]
Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI.
severity SeverityEnum (string)
Possible values: [notice
, warning
, alert
]
group uuidnullable
Define which group of users this notification should be sent and shown to. If left empty, Notification won't ben sent.
Responses
- 201
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
pk uuidrequired
name stringrequired
transports uuid[]
Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI.
severity SeverityEnum (string)
Possible values: [notice
, warning
, alert
]
group uuidnullable
Define which group of users this notification should be sent and shown to. If left empty, Notification won't ben sent.
group_obj
object
required
{
"pk": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"transports": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"severity": "notice",
"group": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"group_obj": {
"pk": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"num_pk": 0,
"name": "string",
"is_superuser": true,
"parent": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"parent_name": "string",
"users": [
0
],
"users_obj": [
{
"pk": 0,
"username": "string",
"name": "string",
"is_active": true,
"last_login": "2024-09-27T14:26:18.174Z",
"email": "[email protected]",
"attributes": {},
"uid": "string"
}
],
"attributes": {},
"roles": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"roles_obj": [
{
"pk": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string"
}
]
}
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X POST '/api/v3/events/rules/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"transports": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"severity": "notice",
"group": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}'