SendMobileMessageAsync

Sends a mobile push notification message to a person’s registered mobile device. Returns (Task)

Overview of SendMobileMessageAsync goes here.

Name Description
person The person to send the mobile message to
message The message request containing title and message content

Send Mobile Message Async

Example in C#

// Returns: Boolean
var item = await client.SendMobileMessageAsync(PersonInfo person, SendMobileMessageRequest message);

Example in CURL



           curl -X POST \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people/PEOPLE.KEY/sendmobilemessage \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                       "$type":"Feenics.Keep.WebApi.Model.SendMobileMessageRequest, Feenics.Keep.WebApi.Model",
                       "NotificationTitle":"title",
                       "NotificationMessage":"message"
                   }'