Sends a mobile app invite to a person using a message template. Returns (Task) Sends a mobile app invite to a person using a message template (low-level method). Returns (Task)
Overview of SendMobileInviteAsync goes here.
| Name | Description |
|---|---|
| person | The person to send the mobile invite to |
| messageTemplateKey | The key of the message template to use for the invite |
| personHref | The href of the person to send the invite to |
| messageTemplateKey | The key of the message template to use for the invite |
| inviteHref | The href of the invite endpoint (default is “sendmobileinvite”) |
Example in C#
// Returns: Boolean
var item = await client.SendMobileInviteAsync(PersonInfo person, String messageTemplateKey);
Example in C#
// Returns: Boolean
var item = await client.SendMobileInviteAsync(String personHref, String messageTemplateKey, String inviteHref);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people/PEOPLE.KEY/sendmobileinvite \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '"messagetemplatekeyexampleforcurl"'
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people/PEOPLE.KEY/sendmobileinvite \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '"messagetemplatekeyexampleforcurl"'