GetByIdsAsync

An awaitable to get a set of BaseInfo objects for a set of keys. Returns (Task<IEnumerable>)

This method will find and return the objects that find a match in the array of keys provided.

Name Description
keys The keys to look up

Get By Ids Async

Example in C#

// Returns: IEnumerable<BaseInfo>
var baseInfo = await client.GetByIdsAsync(String keys);

Example in CURL



           curl -X POST \
               https://keepapi.feenicshosting.com/api/baseinfo \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '["KEY1","KEY2"]'