Notifications

List all the history of the real-time notification sent through Gameball

Gameball sends real-time notifications upon different actions like program achievements, challenge unlocks, cashback cancelation, points redemption.. etc.

You can use Gameball notifications webhooks to send these real-time notifications as in-app notifications instead of using our web or mobile app SDKs.

This endpoint lows you to retrieve a specific player's notification history.

This endpoint is only available for our GURU customers only

GET /integrations/player/:playerUniqueId/notifications

Path Parameters

NameTypeDescription

playerUniqueId

string

Player unique identifier used to uniquely identify the player on Gameball

Headers

NameTypeDescription

APIKey

string

Client API key

{
    "notifications": [
        {
         
            "title": "New level!",
            "body": "Keep it up! You are now on Bronze ",
            "isRead": true,
            "dateTime": "2021-05-12T00:08:09.646174",
            "lang": "en",
            "icon": "https://cdn.gameball.co/uploads/Client 35/ad8b2587-959f-48fd-ab58-a643323652begb-icon-level-13.png"
        },
        {
         
            "title": "Congratulations! ",
            "body": "Welcome earned. Enjoy your rewards and keep earning more!",
            "isRead": true,
            "dateTime": "2021-05-12T00:08:09.623367",
            "lang": "en",
            "icon": "https://cdn.gameball.co/uploads/Client_35/bcc5d9be-3861-415f-bdf9-34b4064a1320Group 2144.png"
        }
    ]
}

Last updated