public async Task <bool> CreateProfile(JObject jsonData)
        {
            var response = await _httpClient.AuthorizedPostAsync <JObject>(String.Format("profiles", Version), jsonData);

            if (response != null)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }