GET api/main/Listnotification?username={username}&page={page}&limit={limit}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| username | string |
Required |
|
| page | integer |
Required |
|
| limit | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of tbl_notification| Name | Description | Type | Additional information |
|---|---|---|---|
| membercode | integer |
None. |
|
| k_code | string |
None. |
|
| string |
None. |
||
| date | date |
None. |
|
| k_name | string |
None. |
|
| chkemail | boolean |
None. |
|
| chksms | boolean |
None. |
|
| chkmsg | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"membercode": 1,
"k_code": "sample string 2",
"email": "sample string 3",
"date": "2025-12-10T07:20:48.3345447+03:30",
"k_name": "sample string 4",
"chkemail": true,
"chksms": true,
"chkmsg": true
},
{
"membercode": 1,
"k_code": "sample string 2",
"email": "sample string 3",
"date": "2025-12-10T07:20:48.3345447+03:30",
"k_name": "sample string 4",
"chkemail": true,
"chksms": true,
"chkmsg": true
}
]
application/xml, text/xml
Sample:
<ArrayOftbl_notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/mobinstore_api.Models">
<tbl_notification>
<chkemail>true</chkemail>
<chkmsg>true</chkmsg>
<chksms>true</chksms>
<date>2025-12-10T07:20:48.3345447+03:30</date>
<email>sample string 3</email>
<k_code>sample string 2</k_code>
<k_name>sample string 4</k_name>
<membercode>1</membercode>
</tbl_notification>
<tbl_notification>
<chkemail>true</chkemail>
<chkmsg>true</chkmsg>
<chksms>true</chksms>
<date>2025-12-10T07:20:48.3345447+03:30</date>
<email>sample string 3</email>
<k_code>sample string 2</k_code>
<k_name>sample string 4</k_name>
<membercode>1</membercode>
</tbl_notification>
</ArrayOftbl_notification>