Skip to main content

Forgot password

POST 

/user/v1/forgot-password

Forgot password

Request

Responses

Forgot password reset successfully.
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://tekdi.github.io/user/v1/forgot-password");
var content = new StringContent("{\n \"newPassword\": \"12345\",\n \"token\": \"User services token\"\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Body required
{
  "newPassword": "12345",
  "token": "User services token"
}
ResponseClear

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