Make a request through postman on
A task project for the Kaiburr recruitment process.
The following command will run a local mongoDB instance in a docker container binded to port 27017
and a maven application bound to port 8080
.
docker-compose up -d
Description | Method | Payload | Response |
---|---|---|---|
Insert data | PUT | name,id,language,framework as JSON | Status: 201 |
Read all data | GET | localhost:8080/ |
status 200, data name,id,language,framework as JSON |
Read by ID | GET | url parameter localhost:8080/{id} |
status 200 name,id,language,framework as JSON |
Delete by ID | DELETE | url parameter localhost:8080/{id} |
200 |
Made with by Vishvam Vyas