Get Notification Details
GET /client/notifications/{id}/
Use the GET /client/notifications/{id}/
endpoint to retrieve the details of a specific notification. Provide the unique id
of the notification to fetch its content.
Parameters
Name
Type
In
Description
Required
id
integer
path
A unique integer value identifying the notification.
Yes
Responses
200 OK
Description: The notification details were successfully retrieved.
Example Response:
{
"id": 101,
"header": "Service Update",
"body": "Your mechanic will arrive in 15 minutes.",
"image": "https://example.com/images/notification.jpg",
"created_at": "2024-11-17T10:30:00Z",
"created_by": "System"
}
Last updated