Skip to content

Technical skills an api collected from an example site. Crud operation is done here using different http methods

Notifications You must be signed in to change notification settings

mahmudurrahman-1/API-Testing----Four

Repository files navigation

Technical Skills API

Netlify Status

Endpoints

Fetch All skills

GET /api/technicalskills

Returns the Status and data of the API.

Status

GET /status

Returns the status of the API.

Single User Skills in details

GET api/technicalskills/169

Returns Details of that id. ###Filter id List based in skills###

GET /api/technicalskills?language=java

Returns a list of Users based on types.

Create a User with skills

POST /api/technicalskills

Allows you to create new user details. doesn't Requires authentication.

The request body needs to be in JSON format and include the following properties:

{ "language": ["1","2"], "yearexp": "exp", "lastused": "date", "st_id": "id" }

The response body returns a message `

  • "status": "true",
  • "msg": "Add data success" `

Get newly created user

GET /api/technicalskills/{{id}}

Allows you to view.

Update a User with id

PUT /api/technicalskills

Allows you to update user details. doesn't Requires authentication.

The request body needs to be in JSON format and include the following properties:

{ "language": ["1","2"], "yearexp": "exp", "lastused": "date", "st_id": "id" }

The response body returns a message `

  • "status": "true",
  • "msg": "update data success" `

Delete a User

Delete /api/technicalskills/{{id}}

Allows you to delete users. doesn't Requires authentication.

The response body returns a message `

  • "status": "false",
  • "msg": "not found" `

About

Technical skills an api collected from an example site. Crud operation is done here using different http methods

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages