Skip to content

Create Notifier

POST
/v1/notifiers
curl --request POST \
--url https://example.com/api/v1/notifiers \
--header 'Authorization: <Authorization>' \
--header 'Content-Type: application/json' \
--data '{ "isActive": true, "name": "example", "url": "example" }'

Notifier Data

Media type application/json
object
isActive
boolean
name
required
string
>= 1 characters <= 255 characters
url
required
string
Example generated
{
"isActive": true,
"name": "example",
"url": "example"
}

OK

Media type application/json
object
createdAt
string
groupId
string
id
string
isActive
boolean
name
string
updatedAt
string
url
string
userId
string
Example generated
{
"createdAt": "example",
"groupId": "example",
"id": "example",
"isActive": true,
"name": "example",
"updatedAt": "example",
"url": "example",
"userId": "example"
}