LF8/requests/createProject.http
Phan Huy Tran 013e964be6
All checks were successful
Quality Check / Tests (push) Successful in 53s
Quality Check / Checkstyle Main (push) Successful in 56s
Release / Release (push) Successful in 38s
feat: Write Integration test for Create Project Route and ensure using Snake Case in JSON Format (SCRUM-7) (!14)
Co-authored-by: Phan Huy Tran <p.tran@neusta.de>
Reviewed-on: #14
Reviewed-by: Jan Gleytenhoover <krisellp9@gmail.com>
2024-09-25 12:27:34 +00:00

15 lines
359 B
HTTP

### GET request to example server
POST http://localhost:8080/projects
Authorization: Bearer {{auth_token}}
Content-Type: application/json
{
"name": "name",
"leading_employee": 1,
"employees": [2, 3],
"contractor": 4,
"contractor_name": "Peter File",
"comment": "goal of project",
"start_date": "01.01.2000",
"planned_end_date": "01.01.2001"
}