GetLicenseAuditRecordInfosAsync

Gets license audit records from a folder, optionally filtered by type and integrator ID. Returns (Task<IEnumerable>)

Overview of GetLicenseAuditRecordInfosAsync goes here.

Name Description
folder The folder to get license audit records from
type The type of license audit records to retrieve
integratorId Optional integrator ID to filter results

Get License Audit Record Infos Async

Example in C#

// Returns: IEnumerable<LicenseAuditRecordInfo>
var licenseAuditRecordInfo = await client.GetLicenseAuditRecordInfosAsync(FolderInfo folder, LicenseAuditRecordTypes type, String integratorId);

Example in CURL



           curl -X GET \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/licenseauditrecords?type=0&integratorId=123abc \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'