- Java - 17
- Maven - 4.0.0
- JPA (Java Persistance API)
- MySQL 8.0.27
Api Documentation already include this project, Click here)
| Description | Request |
|---|---|
| login | curl -X POST http://localhost:8080/api/v1/auth/login |
| create form | curl -X POST http://localhost:8080/api/v1/form |
| list form | curl http://localhost:8080/api/v1/form |
| detail form | curl http://localhost:8080/api/v1/form/{slug} |
| create question | curl -X POST http://localhost:8080/api/v1/form/{slug}/question |
| delete question | curl -X DELETE http://localhost:8080/api/v1/form/{slug}/question/{id} |
| add answer | curl -X POST http://localhost:8080/api/v1/form/{slug}/answer |
| list answer | curl http://localhost:8080/api/v1/form/{slug}/answer |


