Skip to main content
GET
/
:projectId
/
app-notifications
Get App Notifications
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/app-notifications
{
  "notifications": [
    {
      "id": "<string>",
      "userId": "<string>",
      "projectId": "<string>",
      "type": "<string>",
      "action": "<string>",
      "metadata": {
        "initiatorId": "<string>",
        "initiatorName": "<string>",
        "initiatorUsername": "<string>",
        "initiatorAvatar": "<string>"
      },
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ]
}
Retrieve a paginated list of app notifications for the authenticated user, ordered by most recent first.

Query Parameters

page
number
default:"1"
Page number (must be a whole number >= 1)
limit
number
default:"5"
Number of notifications to return (max: 50)

Response

Returns an array of notification objects:
notifications
array

Error Responses

{
  "error": "Invalid request: 'page' must be a whole number greater than 0",
  "code": "app-notification/invalid-page"
}
{
  "error": "Invalid request: limit must be a number",
  "code": "app-notification/invalid-limit"
}
{
  "error": "Internal server error.",
  "code": "app-notification/server-error",
  "details": "<Error message>"
}

Notes

  • Requires authentication
  • Pagination is supported via page and limit query parameters
  • Maximum value for limit is 50, default is 5
  • Notifications are returned in reverse chronological order (most recent first)
  • Rate limiting: 100 requests per 5 minutes
I