Adds a panel area entry item to an ACRE intrusion user profile. Returns (Task)
Overview of AddAcreIntrusionPanelAreaEntryItemAsync goes here.
| Name | Description |
|---|---|
| userProfile | The user profile to add the area entry to |
| panelRelation | The panel relation that contains the area |
| entryItem | The area entry item to add |
Example in C#
// Returns: nothing
await client.AddAcreIntrusionPanelAreaEntryItemAsync(AcreIntrusionUserProfileInfo userProfile, AcreIntrusionPanelRelationEntryItem panelRelation, AcreIntrusionAreaEntryItem entryItem);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/acreintrusionuserprofiles/PROFILE.KEY/panelentries/PANEL.KEY/areaentries \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.AcreIntrusionAreaEntryItem, Feenics.Keep.WebApi.Model",
"AcreIntrusionAreaId":"AREA.KEY"
}'