PublishBadgePrintAuditLogAsync

Logs a badge print or badge print attempt audit log Returns (Task.)

Overview of PublishBadgePrintAuditLogAsync goes here.

Name Description
badgeType The badge type information being printed.
printLogStub The badge print log information.

Publish Badge Print Audit Log Async

Example in C#

// Returns: nothing
await client.PublishBadgePrintAuditLogAsync(BadgeTypeInfo badgeType, item printLogStub);

Example in CURL



           curl -X POST \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/badgetypes/BADGETYPE.KEY/log-print \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
              -d '{
                     "$type":"Feenics.Keep.WebApi.Model.BadgeTypeInfoPrintLogStub, Feenics.Keep.WebApi.Model",
                     "PersonKey":"PERSON.KEY",
                     "IsAttempt":true,
                     "CardAssignmentKey":"CARDASSIGNMENT.KEY",
                     "Printer":"PRINTER NAME"
                  }'