Getting Started
OIDC, RBAC, and Billing
- Authentication & User Info
- User Management
- Ancillary Services
- Teams
- API Credentials
- Roles & Permissions
- Billing - Account
- Billing - Payment Methods
- Billing - Tax IDs
- Billing - Invoices
- Billing - Subscriptions
- Internal M2M
ARP and Devices
- Devices
Developers API
- Sites
- Health
- Synchronous API
- Asynchronous API
- Port Forwards
Asynchronous (MikroTik)
- Bootstrap & Adoption
- Heartbeat
- Jobs
- Runbooks
- Sites
- Internal
- SFTP Auth
Backups
- Site Backups
BGP Feeds And Content Filter
- DNS Policy
- Tunnels & Sites
- Categories & Applications
- BGP Policy
- IP Lists
- Internal Hooks
Captive Portal
- IDP Integrations
- Instances
- Walled Garden
Control Plane Filter
- Policies
- Sites
- Checkin
- Router Commands
- Internal
- Transient Access
- Transient Forward
- Credentials
- Scheduler
CVE Scans
- Scan Schedules
- Scan Results
- CVE Management
- On-Demand Scans
Elastic IP Addressing
- Subnets
- IP Addresses (L2TP)
Logging
- Log Events
Metrics
- Syslog
- ARP
- Interfaces
- MikrotikStats
- Content
- Tunnels
Monitoring & Health
- Faults
Notifications
Scheduled Scripts
- Community Scripts
- Scheduled Scripts
- AI Generation
Schedules
- Schedules
- Internal
SLA Reports
- SLA Schedules
- SLA Reports
VPN
- Servers
- Sites
- Instances
- Peers
- VPN Client Tokens
- Internal
WAN Failover
- Failover
- Tunnel
- Services
- Gateway
Webhooks
- Integrations
Groups
Create a new notification group
Creates a group with name, schedule, topics, recipients, and sites. Requires notification:create
scope.
POST
/
Copy
Ask AI
curl --request POST \
--url https://api.altostrat.io/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"schedule_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"mute": "schedule-active",
"recipients": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"topics": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"sites": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"notifiables": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"channel": "whatsapp"
}
]
}'
Copy
Ask AI
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"schedule_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"mute": "schedule-active",
"recipients": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"notifiables": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"channel": "<string>"
}
],
"topics": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"sites": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Group creation payload
The body is of type object
.
Response
201
application/json
Group successfully created
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.altostrat.io/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"schedule_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"mute": "schedule-active",
"recipients": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"topics": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"sites": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"notifiables": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"channel": "whatsapp"
}
]
}'
Copy
Ask AI
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"schedule_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"mute": "schedule-active",
"recipients": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"notifiables": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"channel": "<string>"
}
],
"topics": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"sites": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
Assistant
Responses are generated using AI and may contain mistakes.