Placewise API
Get startedExplore
Get startedExplore
Performance Cloud 🗗
Placewise 🗗
ExplorePublic APIManagement APIUsers API
Operations APIMessaging APIReporting APIML APIData API
ExplorePublic APIManagement APIUsers API
Operations APIMessaging APIReporting APIML APIData API
  1. Notifications
  • Introduction
  • Users
    • Introduction
    • Account
      • Show Notifications Settings
      • Update Notifications Settings
    • List Users
      GET
  • Conversations
    • Introduction
    • Conversations
      • Mark Conversation as "received"
      • Create Conversation
      • List Conversations
      • Show Conversation
      • Mark Conversation as "seen"
      • Archive Conversation
    • Messages
      • Create Message
      • List Messages
      • Archive Message
  • Notifications
    • List Notifications
      GET
    • Show Notification
      GET
    • Mark all Notifications as Received
      PUT
    • Mark Notification as Seen
      PUT
    • Mark all Notifications as Seen
      PUT
    • Mark Notification as Received
      PUT
  • Subunits Scopes
    • List Subunits Scopes for User
      GET
  1. Notifications

List Notifications

GET
https://api.mpc.dev.placewise.com/v1/users/me/notifications
API Permit:Notifications:Api:Users:Notifications:Index
API Context:Customer
Authorizations:User

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C#
Ruby
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.mpc.dev.placewise.com/v1/users/me/notifications?seen=true&per_page=&page_no=1&sort_by[]=id&sort_directions[]=DESC' \
--header 'X-User-Agent;' \
--header 'X-Product-Name;' \
--header 'X-Customer;' \
--header 'Authorization: Bearer ' \
--header 'X-Locale: pl'

Responses

🟢200Success
application/json
Body

Example
{
    "not_seen_notifications_count": 5,
    "notifications": [
        {
            "id": 1,
            "app_module": "operations_documents",
            "type": "operations_alert_accepted",
            "body": "APPROVED: Holiday promo coupon 10% discount",
            "url": "447;type=customer/resources/details/23",
            "occurred_at": "2022-11-09T16:25:58.099512Z",
            "created_at": "2022-11-05T16:25:58.099512Z",
            "received_at": "2022-11-09T16:25:58.099512Z",
            "seen_at": "2022-11-09T16:25:58.099512Z"
        }
    ],
    "pagination_info": {
        "count": 1000,
        "total_count": 2050,
        "per_page": 1000,
        "total_pages": 3,
        "current_page": 1,
        "next_page": 2,
        "prev_page": null,
        "is_first_page": true,
        "is_last_page": false,
        "is_out_of_range": false,
        "offset": 0
    }
}
Previous
Archive Message
Next
Show Notification
Built with