Request
Body Params application/json
{
"config": {
"sent": true,
"received": false,
"time_desc": true,
"ignore_read": false,
"pagination": {
"size": 20,
"index": 0
}
}
}
Request Code Samples
curl --location --request GET 'http://localhost:8000/notification/get' \
--header 'Content-Type: application/json' \
--data-raw '{
"config": {
"sent": true,
"received": false,
"time_desc": true,
"ignore_read": false,
"pagination": {
"size": 20,
"index": 0
}
}
}'
Responses
{
"total": 0,
"pagination": {
"size": 20,
"index": 0
},
"data": [
{
"notification_id": 0,
"sender_id": 0,
"receiver_id": 0,
"created_time": 0,
"read_time": 0,
"content": {
"content_type": "text",
"category": "basic",
"title": "string",
"message": "string"
}
}
]
}
Modified at 2024-12-11 01:16:41