Skip to main content

Update Account Authentication Settings

PUT 

https://useast.api.elasticpath.com/v2/settings/account-authentication

Use this endpoint to update account authentication settings

Request

Responses

OK

Authorization: http

name: BearerTokentype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Put, "https://useast.api.elasticpath.com/v2/settings/account-authentication");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": {\n \"type\": \"account_authentication_settings\",\n \"enable_self_signup\": true,\n \"auto_create_account_for_account_members\": true,\n \"account_member_self_management\": \"disabled\",\n \"account_management_authentication_token_timeout_secs\": 86400\n }\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://useast.api.elasticpath.com
Auth
Body
{
  "data": {
    "type": "account_authentication_settings",
    "enable_self_signup": true,
    "auto_create_account_for_account_members": true,
    "account_member_self_management": "disabled",
    "account_management_authentication_token_timeout_secs": 86400
  }
}
ResponseClear

Click the Send API Request button above and see the response here!