POST v1/user/notifications
MOBILE - NOTIFICATIONS
Request Information
URI Parameters
None.
Body Parameters
UserNotificationListRequestModelName | Description | Type | Additional information |
---|---|---|---|
id | integer |
None. |
|
user_id |
User ID (GUID) |
string |
Required Data type: Text |
user_signature |
MD5 hash signature for the active user to validate the request |
string |
Required Data type: Text |
Request Format
application/json, text/json
Sample:
{ "id": 1, "user_id": "sample string 2", "user_signature": "sample string 3" }
Response Information
Resource Description
MOBILE - NOTIFICATIONS
BaseMetaResultModelOfUserNotificationModel[]Name | Description | Type | Additional information |
---|---|---|---|
response | Collection of UserNotificationModel |
None. |
|
meta |
Basic meta information for the operation result |
MetaModel |
None. |
Response Format
application/json, text/json
Sample:
{ "response": [ { "id": 1, "user_uid": "sample string 2", "type": "sample string 3", "message": "sample string 4", "create_date": "2024-11-25T05:49:44.8564828+03:00", "is_read": 6 }, { "id": 1, "user_uid": "sample string 2", "type": "sample string 3", "message": "sample string 4", "create_date": "2024-11-25T05:49:44.8564828+03:00", "is_read": 6 } ], "meta": { "status_code": 1, "status_message": "sample string 2" } }