Inserts a new AttendeeInfo object at the supplied Instance location Returns (Task)
Name | Description |
---|---|
folder | the target folder |
item | the AttendeeInfo instance to add |
Example in C#
// Returns: AttendeeInfo
var attendeeInfo = await client.AddAttendeeAsync(FolderInfo folder, AttendeeInfo item);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/INSTANCE.KEY/attendees \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-D '{
"$type":"Feenics.Keep.WebApi.Model.AttendeeInfo, Feenics.Keep.WebApi.Model",
"PersonKey":null,
"Card":null,
"Status":0,
"Key":null,
"CommonName":null,
"InFolderHref":null,
"InFolderKey":null,
"Links":[],
"ObjectLinks":null,
"Metadata":null,
"Notes":null,
"Tags":null,
"Monikers":null,
"Href":null
}'