db-04-flights/requests.http
Jonas Hinterdorfer f0d41f5711 implemented task 3
2025-03-16 13:15:50 +01:00

14 lines
292 B
HTTP

PUT http://localhost:3000/api/passengers/123456789
Content-Type: application/json
{
"name": "John Doe",
"dateOfBirth": "1990-01-01T00:00:00.000Z",
"isFemale": false
}
### get all
GET http://localhost:3000/api/passengers/
### get one
GET http://localhost:3000/api/passengers/123456789