AMEEClient.Client.CreateProfile C# (CSharp) Method

CreateProfile() public method

public CreateProfile ( ) : CreateProfileResponse
return AMEEClient.Model.CreateProfileResponse
        public CreateProfileResponse CreateProfile()
        {
            string uriTemplate = "/"; // prevent caching
            return Request<CreateProfileResponse>("profiles", uriTemplate, "POST",
                                                  new Dictionary<string, object>
                                                      {
                                                          {"profile",true}
                                                      }, TimeSpan.FromMilliseconds(0), "default");
        }