The Wayback Machine - https://web.archive.org/web/20201108060031/https://github.com/lssinc/voyage-api-java/issues/85
Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Voyage App: User Services Sync #85

Open
tmichalski opened this issue Apr 23, 2018 · 0 comments
Open

Voyage App: User Services Sync #85

tmichalski opened this issue Apr 23, 2018 · 0 comments
Assignees
Labels
Projects

Comments

@tmichalski
Copy link

@tmichalski tmichalski commented Apr 23, 2018

/src/app/core/user/user.service.ts

  • /profiles/me
    • GET User object
    • PUT User object
  • /users
    • GET list of User objects
  • /users/${userId}/account-status
    • PUT a UserStatus object

User

  • email: string;
  • firstName: string;
  • lastName: string;
  • username: string;
  • id: string;
  • isActive: boolean;
  • isVerifyRequired: boolean;
  • roles: Array;
  • phones: Array;
  • profileImage: string;

UserStatus

  • isActive: boolean;
  • isVerifyRequired: boolean;

Phone

  • phoneNumber: string;
  • phoneType: number;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
2 participants
You can’t perform that action at this time.