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