App Notify API
Used to get notification information for a specified application.
Request URL GET / POST
http
https://nobase.cn/api/app/notifyRequest Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| appid | string | ✅ Yes | Application unique identifier |
| signature | string | ✅ Yes | Application signature |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | number | Status code: 200=Success |
| msg | string | Status description |
| data | object | Notification data |
| data.title | string | Notification title |
| data.content | string | Notification content |
Success Response Example
json
{
"code": 200,
"msg": "success",
"data": {
"title": "New Activity",
"content": "Check out our latest promotion!"
}
}TIP
Please refer to the Chinese documentation for more details.

