Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openservices-dev/aws-user-service
User management for your web application.
https://github.com/openservices-dev/aws-user-service
aws aws-cognito user-management
Last synced: 17 days ago
JSON representation
User management for your web application.
- Host: GitHub
- URL: https://github.com/openservices-dev/aws-user-service
- Owner: openservices-dev
- License: mit
- Created: 2024-11-03T13:34:29.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-03T15:34:19.000Z (2 months ago)
- Last Synced: 2024-11-10T17:58:38.556Z (about 2 months ago)
- Topics: aws, aws-cognito, user-management
- Language: TypeScript
- Homepage:
- Size: 104 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS User Service
User management for your web application.
## Routes
List of routes with basic info.
Use `/user/api-docs` to view routes descriptions. This route is available only in development mode (`ENV=DEVELOPMENT`).
For testing purpose check [Postman collection](./aws-user-service.postman_collection.json).
| Request | Path | Description |
| ------- | ---- | ----------- |
| POST | /user/register | Register new user |
| POST | /user/confirm | Confirm registration using verification code |
| POST | /user/login | Log in user |
| GET | /user/me | User detail |
| PUT | /user/user/:id | Update user |
| POST | /user/password-reset-request | Request password reset |
| POST | /user/password-reset | Reset password using verification code |
| POST | /user/totp/setup | Setup MFA |
| POST | /user/totp/verify | Verify MFA |
| DELETE | /user/:id | Delete user |
| GET | /user/refresh-token | Renew refresh token |## License
[MIT license](./LICENSE)