GetCardFormatsAsync

Gets all card formats in a folder with pagination support Returns (Task<IEnumerable>)

Find all the Card Formats in the designated Folder.

Name Description
folder The folder to get card formats from
page The page number to retrieve
pageSize The Page Size (default is 1000). Maximum allowed value is 20000.

Get Card Formats Async

Example in C#

// Returns: IEnumerable<CardFormatInfo>
var cardFormatInfo = await client.GetCardFormatsAsync(FolderInfo folder, Int32 page, Int32 pageSize);

Example in CURL



           curl -X GET \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/cardformats \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'