Skip to content

App Notify API

Used to get notification information for a specified application.

Request URL GET / POST

http
https://nobase.cn/api/app/notify

Request Parameters

ParameterTypeRequiredDescription
appidstring✅ YesApplication unique identifier
signaturestring✅ YesApplication signature

Response Parameters

ParameterTypeDescription
codenumberStatus code: 200=Success
msgstringStatus description
dataobjectNotification data
data.titlestringNotification title
data.contentstringNotification 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.