Documentation
- Getting Started
- Authentication
- Making Requests
- Resource Creation
- Searching
- Plugins
- Webhooks
Tutorials
APIs
- Activity Codes
- Archive
- Authorization
- Bank Accounts
- Contacts
- Events
- Expenses
- Fees
- Files
- Firm
- Firm Users
- Folders
- Invoices
- Layout Designs
- Layout Matter Items
- Matter Billing Configuration
- Matter Items
- Matter Types
- Matters
- Memos
- Notifications
- Plugins
- Referral Types
- Relationships
- Roles
- Staff
- Stages
- Subscription Payments
- Subscription Promotions
- Subscriptions
- Tasks
- Users
- Webhooks
Notifications
Get a notification
Retrieves a specified notification.
GET
/
notifications
/
{id}
curl --request GET \
--url https://api.smokeball.com/notifications/{id} \
--header 'Authorization: <api-key>' \
--header 'x-api-key: <api-key>'
{
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"id": "e2fd015b-8a60-42be-9ea4-b2ef7aa0289b",
"createdByUserId": "db0b4298-67ef-4638-a92a-5bb830ea6af6",
"createdDate": "\"832e778f-83df-454a-b344-768a862a7e67\"",
"icon": "",
"iconColor": "#25C9A4",
"message": "[@staffId] has **assigned** you a Task.",
"toastyIcon": "<string>",
"toastyMessage": "<string>",
"isRead": false,
"hasBeenSeen": false,
"creationTimestamp": "2023-11-07T05:31:56Z",
"updatedDate": "2020-02-15T00:00:00Z",
"isDeleted": false
}
Path Parameters
Response
200
application/json
When request is successful. Returns a 'Notification' object.
The response is of type object
.
curl --request GET \
--url https://api.smokeball.com/notifications/{id} \
--header 'Authorization: <api-key>' \
--header 'x-api-key: <api-key>'
{
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"id": "e2fd015b-8a60-42be-9ea4-b2ef7aa0289b",
"createdByUserId": "db0b4298-67ef-4638-a92a-5bb830ea6af6",
"createdDate": "\"832e778f-83df-454a-b344-768a862a7e67\"",
"icon": "",
"iconColor": "#25C9A4",
"message": "[@staffId] has **assigned** you a Task.",
"toastyIcon": "<string>",
"toastyMessage": "<string>",
"isRead": false,
"hasBeenSeen": false,
"creationTimestamp": "2023-11-07T05:31:56Z",
"updatedDate": "2020-02-15T00:00:00Z",
"isDeleted": false
}
Assistant
Responses are generated using AI and may contain mistakes.