/// <summary>
        /// Remove Face List from API
        /// </summary>
        /// <param name="faceListId"></param>
        /// <returns></returns>
        public static async Task <bool> DeleteFaceListByFaceListID(string faceListId)
        {
            try
            {
                await fsClient.DeleteFaceListAsync(faceListId);

                return(true);
            }
            catch (Exception e)
            {
                return(false);
            }

            //try
            //{
            //    AsyncHelpers.RunSync(() => fsClient.DeleteFaceListAsync(faceListId));
            //    return true;
            //}
            //catch (Exception e)
            //{
            //    return false;
            //}
        }