示例#1
0
        public string PostAccount(string Name, string AccountType, string token)
        {
            var body     = JsonConvert.SerializeObject(new { AccountType, Name });
            var response = CustomHttpHelper.MakeHttpRequest("POST", $"{baseUrl}company/{RealMeId}/account?minorversion={minorversion}", body, token);

            return(response);
        }