Raffle System
  1. general
Raffle System
  • Raffles
    • authentication
      • admin login
      • user login
    • awarded-boxes
      • getAll
      • open awarded box
      • create
      • getAll by raffleId
      • delete
    • awarded-boxes-combo
      • create
      • getAll by raffleId
      • update
      • delete
    • tracking
      • get tracking info
    • pay2m-api
      • access token generation
      • generate billing qr code
      • consult qr code
      • list webhook
      • register/update webhook
      • delete webhook
    • provider-api
      • auth login
      • create pix static
      • get webhooks
      • create webhook
      • get balance
      • get extracts
      • edit webhook
      • delete webhook
      • get webhook details
      • restore webhook
    • winner
      • get quota prize winners
    • general
      • update settings
        PATCH
      • get settings
        GET
      • create notifications
        POST
      • get notifications
        GET
      • get notification by id
        GET
      • update notification
        PATCH
      • delete notification
        DELETE
      • create faq
        POST
      • get faqs
        GET
      • get faq by id
        GET
      • update faq
        PATCH
      • delete faq
        DELETE
    • metrics
      • get sales by day for raffle
      • get top buyers by raffle
      • get general metrics
      • get last orders
      • get raffle percentage of sales
      • get orders summary
      • get badges
      • get sell bar
      • get fake sold quotas percentage
      • create fake sold quotas percentage
      • update fake sold quotas percentage
    • payments
      • get payment providers
      • create/update payment provider
      • get payment provider by name
      • get pix payments
      • get my pix payments
      • get pix payment details
    • order
      • create order withou payment method
      • create order
      • get orders
      • get orders by raffle id
      • get my orders
      • get order details
      • pay order
      • cancel order
    • lucky-numbers
      • get lucky numbers by raffleId
      • get lucky numbers by orderId
    • raffle
      • toggle awarded boxes visualization
      • toggle awarded boxes winners visualization
      • toggle acumulative combo
      • update category
      • delete category
      • create raffle category
      • get categories
      • create raffle
      • get raffles
      • get raffle details
      • delete raffle
      • update raffle
      • get winners
      • get winner details
      • get winner info
      • create winner
      • upload file
    • user
      • create user
      • get users
      • update user
      • get user details
      • delete user
      • get user by phone
      • get profile
      • create customer
      • update customer
  1. general

get notification by id

GET
/v1/notifications/{notificationId}
general
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '/v1/notifications/{{notificationId}}'
Response Response Example
{
    "id": 2,
    "title": "Molestiae quod ullam culpa cum iure repellat beatae quia ratione.",
    "description": "Minima earum ipsam dignissimos enim facere enim iusto consequatur dolores. Soluta fugit maxime exercitationem. Repellendus doloribus nihil saepe sunt ratione dolor nobis molestiae hic.\nQuibusdam nesciunt consectetur nihil harum officiis ducimus delectus dolores hic. Itaque doloribus optio sed impedit. Mollitia iusto assumenda laudantium explicabo.",
    "createdAt": "2025-01-09T22:19:13.153Z",
    "seenAt": null
}

Request

Path Params
notificationId
string 
required
Example:
{{notificationId}}

Responses

🟢200OK
application/json
Body
id
integer 
required
title
string 
required
description
string 
required
createdAt
string <date>
required
seenAt
string <date> | null 
required
Previous
get notifications
Next
update notification
Built with