- Start your Apidog journey
- Infinity
- Pomelo Card
- [Mobile]
- EkycCardHolder_Update
- [Batch]-Create
- [Batch]-Resent OTP Create
- [Batch]-Verify OTP Create
- [Batch]-Get Pomelo Batch Card With Paging
- [Batch]-Confirm Receved
- [Batch]-Get Details
- [CardHolder]-Get Presign Link
- [CardHolder]-Create
- [CardHolder]-Get Otp Approval Or Reject
- [CardHolder]-Verify OTP Approval Or Reject
- [CardHolder]-Resent OTP Approval Or Reject
- [CardHolder]-Get Ekyc With Paging
- [CardHolder]-Get With Paging
- [CardHolder]-Get By Company With Paging
- [CardHolder] - PresignLinkView
- [Common]-Get Documents Type
- [Common]-Get Nationalities
- [Common]-Get Genders
- [Card]-Get With Paging
- [Card]-Get Details
- [Card]-Get Details By CardID
- [Card]-Get OTP Action
- [Card]-Resent OTP Action
- [Card]-Verify OTP
- [Card]-Get Balance
- [Card]-Confirm Received Card
- [CardHolder]-Search
- [Card]-GetTransactionHistory
- [Account]-Get Account Details
- [Card]-Get Cards By Batch
- [Account]-Get Statement
- [Card Holder] - Get Card Holder Detail
- [Card]-Search Pomelo Card
- [CardHolder]-Edit
- Users
- User Blacklist
- User Blacklist History
- [User]-CreatePOST
- [User]-LoginPOST
- [User]-Create User TypePOST
- [User]-Change PasswordPOST
- [User]-ListPOST
- [User]-Forgot PasswordPOST
- [User]-Update AvatarPOST
- [User]-Update InfoPOST
- [User]-Update LanguagePOST
- [User]-Update TokenPOST
- [User]-Set Read NotificationPOST
- [User]-Get NotificationsPOST
- [User]-Update Device tokenPOST
- [User]-User DetailPOST
- [User]-Count Notification UnreadPOST
- [User]-Verify OTP Forgot PasswordPOST
- [User]-Resent OTP Forgot PasswordPOST
- [User]-Get IvPOST
- [User]-Login With 2FaPOST
- Company
- Company Blacklist
- Company Blacklist History Copy
- [Company]-New Star
- [Company]-New Satellite
- [Company]-New Star Config
- [Company]-Get Relationships
- [Company]-Star By User
- [Company]-Get Satellites
- [Company]-Satellite Under Star
- [Company]-Get Presign Link
- [Company]-Set Bank Account
- [Company]-Get Star Details
- [Company]-Get Satellite Details
- [Company]-Edit Star
- [Company]-Edit Satellite
- [Company]-Move Satellite
- [Company]-Get OTP
- [Company]-Resent OTP
- [Company]-Verity OTP
- [Company]-Get Overnight Money
- [Company]-Save Overnight Money
- [Company]-Get Request Open Company
- [Company]-Set Status Request Open Account
- [Company]-Get Docs By Type
- [Company]-Add Special Clabe
- [Company]-Get OTP Block Company
- [Company]-Resent OTP Block Company
- [Company]-Verify OTP Block Company
- [Company]-Get Banks
- [Company]-Get Galaxy
- [Company]-Get Galaxy By User
- [Company]-Pre-Sign Link Upload Blacklist Review Doc
- [Company]-Pre-Sign Link Read Blacklist Review Doc
- Group
- Transaction
- [Transaction]-Get Transactions By Company V2
- [Transaction]-Get Transactions By Company
- [Transaction]-Get Pending Transactions
- [Transaction]-Get Pending Transaction V2
- [Transaction]-Get Details Pending Transaction
- [Transaction]-Get Schedule Transaction
- [Transaction]-Get Schedule Transaction V2
- [Transaction]-Get Transaction Details
- [Transaction]-Get Transaction Status
- [Transactio] - Transfer Money
- [Transactio] - Verify OTP
- [External]Pomelo
- External
- ClientWeb
[User]-Get Notifications
Developing
POST
/api=getNotifications
#Users
Request
Body Params application/json
lastDocId
string
optional
limit
string
required
Example
{
"lastDocId": "string",
"limit": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api=getNotifications' \
--header 'Content-Type: application/json' \
--data-raw '{
"lastDocId": "string",
"limit": "string"
}'
Responses
🟢200Success
application/json
Body
code
integer
required
message
string
required
reqId
string
required
payload
array [object {14}]
required
updatedAt
string <date-time>
required
createdAt
string <date-time>
required
fromCode
string
required
toCode
string
required
createdBy
string
required
creatorName
string
required
toAccountName
string
required
fromAccountName
string
required
event
string
required
amount
string
required
userName
string
required
companyName
string
required
status
string
required
isNew
string
required
Example
{
"code": 0,
"message": "string",
"reqId": "string",
"payload": [
{
"updatedAt": "2019-08-24T14:15:22Z",
"createdAt": "2019-08-24T14:15:22Z",
"fromCode": "string",
"toCode": "string",
"createdBy": "string",
"creatorName": "string",
"toAccountName": "string",
"fromAccountName": "string",
"event": "string",
"amount": "string",
"userName": "string",
"companyName": "string",
"status": "string",
"isNew": "string"
}
]
}
Modified at 2025-03-05 16:46:38