Returns (Task)
UpdateCardAssignmentAsync is used to save changes made to the designated Card Assignment.
Name | Description |
---|---|
cardAssignment |
Example in C#
// Returns: nothing
await client.UpdateCardAssignmentAsync(CardAssignmentInfo cardAssignment);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people/PERSON.KEY/cards/CARDASSIGNMENT.KEY \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.CardAssignmentInfo, Feenics.Keep.WebApi.Model",
"Key":"CARDASSIGNMENT.KEY",
"EncodedCardNumber":751535,
"DisplayCardNumber":"751535",
"ActiveOn":"2019-02-22T20:51:31.4443735Z",
"ExpiresOn":"2020-02-22T20:51:31.4443735Z",
"PinCode":null,
"AntiPassbackExempt":false,
"ExtendedAccess":false,
"PinExempt":false,
"IsDisabled":false,
"ManagerLevel":0,
"OriginalUseCount":null,
"CurrentUseCount":0,
"Note":null,
"HexValue":null,
"RecordId":null,
"LastUsed":null,
"Href":"/api/f/INSTANCE.KEY/people/PERSON.KEY/cards/CARDASSIGNMENT.KEY"
}'