POST api/NotifyMobiles

Sends a push notification to users. Notificaton will be sent to mobiles with the following payload: iOS => {"aps":{"alert":"[message]","title":"[message]" , "NotificationType": [recordType], "RecordId": [recordId], "badge":1, "content-available": 1, "sound": "default"}} Android => {"alert":"[message]","title":"[message]" , "NotificationType": [recordType], "RecordId": [recordId], "badge":1, "content-available": 1, "sound": "default"}

Request Information

URI Parameters

None.

Body Parameters

Obligatory. Push notification type

NOTIFICATIONS
NameDescriptionTypeAdditional information
NOTIFY_ID

integer

None.

FK_NOTIFY_TYPE

integer

None.

NOTIFY_DETAILS

string

None.

FK_CHILD

integer

None.

FK_CREATOR

integer

None.

CREATE_DATE

date

None.

CHILDREN

CHILDREN

None.

NOTIFICATION_TYPES

NOTIFICATION_TYPES

None.

Request Formats

application/json, text/json

Sample:
{
  "CREATE_DATE": "2025-11-14T20:49:48.4187927Z",
  "FK_CREATOR": 4,
  "FK_NOTIFY_TYPE": 2,
  "NOTIFY_ID": 1,
  "CHILDREN": {
    "ACTIVE": true,
    "CHILD_ID": 1,
    "NOTES": "sample string 6",
    "CHILD_SCODE": "sample string 4",
    "CHILD_QR_CODE": "sample string 3",
    "CHILD_NAME": "sample string 2"
  },
  "NOTIFICATION_TYPES": {
    "TYPE_ID": 1,
    "TYPE_TITLE": "sample string 2"
  },
  "FK_CHILD": 1,
  "NOTIFY_DETAILS": "sample string 3"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Status
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

DetailedMessage

string

None.

Code

ResultStatusCode

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Code": "0",
  "DetailedMessage": "sample string 3",
  "Message": "sample string 2"
}