Create or dismiss a system notification
curl --request POST \
--url https://my.propops.app/api/system/notifications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"csrf_token": "abc123def456",
"title": "Scheduled Maintenance",
"body": "The platform will be offline for maintenance on 01/07/2024 from 02:00–04:00 UTC.",
"type": "info",
"notification_id": 1
}
'{
"success": true,
"message": "Operation completed successfully"
}Notifications
Create or dismiss a system notification
Create a new system-wide notification or dismiss an existing one. Required permission: api.system.notifications.manage
POST
/
api
/
system
/
notifications
Create or dismiss a system notification
curl --request POST \
--url https://my.propops.app/api/system/notifications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"csrf_token": "abc123def456",
"title": "Scheduled Maintenance",
"body": "The platform will be offline for maintenance on 01/07/2024 from 02:00–04:00 UTC.",
"type": "info",
"notification_id": 1
}
'{
"success": true,
"message": "Operation completed successfully"
}Documentation Index
Fetch the complete documentation index at: https://help.propops.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
All API requests must include a valid Bearer token in the Authorization header.
Tokens are 64-character SHA-256 session hashes issued by the PropOps authentication system.
Example:
Authorization: Bearer a1b2c3d4e5f6...Body
application/json
Available options:
create, dismiss, delete Example:
"abc123def456"
Example:
"Scheduled Maintenance"
Example:
"The platform will be offline for maintenance on 01/07/2024 from 02:00–04:00 UTC."
Available options:
info, warning, critical Example:
"info"
Example:
1
⌘I