Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Latest commit

 

History

History

openapi (EXPERIMENTAL)

Partner portál felhasználó/felület irányából elérhető, felhasználó regisztráció és profil adatok kezelésére szolgáló interfész.

This Dart package is automatically generated by the OpenAPI Generator project:

  • API version: 1.0
  • Build package: org.openapitools.codegen.languages.DartDioClientCodegen

Requirements

  • Dart 2.12.0 or later OR Flutter 1.26.0 or later
  • Dio 4.0.0+

Installation & Usage

pub.dev

To use the package from pub.dev, please include the following in pubspec.yaml

dependencies:
  openapi: 1.0.0

Github

If this Dart package is published to Github, please include the following in pubspec.yaml

dependencies:
  openapi:
    git:
      url: https://github.com/GIT_USER_ID/GIT_REPO_ID.git
      #ref: main

Local development

To use the package from your local drive, please include the following in pubspec.yaml

dependencies:
  openapi:
    path: /path/to/openapi

Getting Started

Please follow the installation procedure and then run the following:

import 'package:openapi/openapi.dart';


final api = Openapi().getLoginApi();
final PostLoginRequest postLoginRequest = ; // PostLoginRequest | 

try {
    final response = await api.postLogin(postLoginRequest);
    print(response);
} catch on DioError (e) {
    print("Exception when calling LoginApi->postLogin: $e\n");
}

Documentation for API Endpoints

All URIs are relative to https://localhost:7166/api/v1

Class Method HTTP request Description
LoginApi postLogin POST /login
UserProfileApi deleteEngineerSubstitution DELETE /engineerSubstitution/{substitutionId} Helyettesítés törlése
UserProfileApi getAssignableEngineers GET /assignableEngineers Tiget elbírálható munkatársak listázása
UserProfileApi getAssignableEngineersForSubstitution GET /assignableEngineersForSubstitution Helyettesként kiválasztható munkatársak listázása
UserProfileApi getChoosableEngineersForHeadOfEngineer GET /choosableEngineersForHeadOfEngineer Műszaki előkészítők listázása, akiknek a főmérnök helyettest állíthat be.
UserProfileApi getEngineerSubstitution GET /engineerSubstitution Helyettesítések listázása
UserProfileApi getProfileData GET /profileData Felhasználó profil adatok lekérése
UserProfileApi getProfileHeaderList GET /profileHeaderList Felhasználók listázása
UserProfileApi postEngineerSubstitution POST /engineerSubstitution/{userId} Helyettesítő előkészítő beállítása
UserProfileApi postInitForgotPassword POST /initForgotPassword Elfelejtett jelszó funkció
UserProfileApi postInitUserEmailChange POST /initUserEmailChange E-mail cím változtatás indítása
UserProfileApi putUserEmail PUT /userEmail Felhasználó e-mail cím módosítás
UserProfileApi putUserPassword PUT /userPassword/ Felhasználó jelszó módosítás
UserProfileApi putUserPasswordReset PUT /userPasswordReset Új jelszó megadása
UserRegApi getEmailByToken GET /emailByTokenReg/{token} Regisztrációs e-mail cím lekérése
UserRegApi putUserPasswordReg PUT /userPasswordReg/{token} Kezdeti jelszó megadása
VersionApi getComponentVersion GET /version useradmin backend komponens verziószáma

Documentation For Models

Documentation For Authorization

bearerAuth

  • Type: HTTP basic authentication

Author