Future<dynamic> passwordReset(String email) async { var body = <String, String>{ "email": email, }; return apiPost("/access/forget", body); }