Actions (31)
Alerts · 19
- Create alertPOST /api/accounts/{account_id}/alerts
Create a new alert for the given account.
documented - Create sharePOST /api/accounts/{account_id}/alerts/{alert_id}/shares
Create a share object linking an account to an alert.
documented - Create tagPOST /api/accounts/{account_id}/alerts/{alert_id}/tags
Create a new tag for the alert.
documented - Delete shareDELETE /api/accounts/{account_id}/alerts/{alert_id}/shares/{share_id}
Delete a share association for an alert.
documented - Delete tagDELETE /api/accounts/{account_id}/alerts/{alert_id}/tag/{tag_id}
Delete a tag from the alert.
documented - Fetch alertGET /api/accounts/{account_id}/alerts/{alert_id}
Retrieve details for a single alert.
documented - Fetch alert preferencesGET /api/accounts/{account_id}/alerts/{alert_id}/preferences
Retrieve an alert's current notification/weight preferences.
documented - Fetch authorsGET /api/accounts/{account_id}/alerts/{alert_id}/authors
List authors associated with an alert.
documented - Fetch shareGET /api/accounts/{account_id}/alerts/{alert_id}/shares/{share_id}
Retrieve a specific share object.
documented - Fetch tagsGET /api/accounts/{account_id}/alerts/{alert_id}/tags
Get all tags for the alert.
documented - List alertsGET /api/accounts/{account_id}/alerts
Fetch all alerts for a given account.
documented - List sharesGET /api/accounts/{account_id}/alerts/{alert_id}/shares
Fetch all shares for an alert.
documented - Pause alertPOST /api/accounts/{account_id}/alerts/{alert_id}/pause
Pause a single alert.
documented - Pause alertPOST /api/accounts/{account_id}/alerts/{alert_id}/pause
Pause a single alert.
documented - Unpause alertPOST /api/accounts/{account_id}/alerts/{alert_id}/unpause
Unpause a single alert.
documented - Unpause alertPOST /api/accounts/{account_id}/alerts/{alert_id}/unpause
Unpause a single alert.
documented - Update alertPUT /api/accounts/{account_id}/alerts/{alert_id}
Modify an existing alert’s criteria and settings.
documented - Update alert preferencesPUT /api/accounts/{account_id}/alerts/{alert_id}/preferences
Update an alert's notification/weight preferences.
documented - Update sharePUT /api/accounts/{account_id}/alerts/{alert_id}/shares/{share_id}
Modify a share (permissions/blocked flags) for an alert.
documented
Account · 5
- Create accountPOST /api/accounts
Create a new Mention account.
documented - Delete accountDELETE /api/accounts/{account_id}
Delete the specified account.
documented - Fetch accountGET /api/accounts/{account_id}
Retrieve details for the given account.
documented - Fetch my accountGET /api/accounts/me
Fetch details for the authenticating user’s account.
documented - Update accountPUT /api/accounts/{account_id}
Update attributes of the specified account.
documented
Mentions · 5
- Create taskPOST /api/accounts/{account_id}/alerts/{alert_id}/mentions/{mention_id}/tasks
Create a task for a given mention.
documented - Delete taskDELETE /api/accounts/{account_id}/alerts/{alert_id}/mentions/{mention_id}/tasks/{task_id}
Delete a task from a mention.
documented - Fetch taskGET /api/accounts/{account_id}/alerts/{alert_id}/mentions/{mention_id}/tasks/{task_id}
Fetch a specific task.
documented - Fetch tasks for an alertGET /api/accounts/{account_id}/alerts/{alert_id}/tasks
List all tasks on an alert.
documented - Update taskPUT /api/accounts/{account_id}/alerts/{alert_id}/mentions/{mention_id}/tasks/{task_id}
Update a task on a mention.
documented