Express Booking
GET /api/users
POST /api/users
Parameter | Type | Description |
---|---|---|
name |
string |
User name |
lastname |
string |
User lastname |
email |
string |
User email |
username |
string |
Username |
phone |
string |
Phone |
PUT /api/users/:id
Parameter | Type | Description |
---|---|---|
name |
string |
User name |
lastname |
string |
User lastname |
email |
string |
User email |
DELETE /api/users/:id
Prefix is suggested based on the Angular convention:
- build: Changes that affect the build system or external dependencies
- ci: Changes to our CI configuration files and scripts
- chore: updating elements but no production code change
- docs: Documentation only changes
- feat: A new feature
- fix: A bug fix
- perf: A code change that improves performance
- refactor: A code change that neither fixes a bug nor adds a feature
- style: Changes that do not affect the meaning of the code
- test: Adding missing tests or correcting existing tests