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