From c168d45d1fa66c89ecf2dc1e268f4b20e9779bfb Mon Sep 17 00:00:00 2001 From: NIYOBYOSE Isaac Precieux Date: Sat, 21 Feb 2026 11:43:06 +0200 Subject: [PATCH] Modify employee request examples in README Updated example request bodies in the README to use user placeholders. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 70884fd..ebfe077 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Employee Management System - REST API +# Employee Management System: REST API This project implements CRUD (Create, Read, Update, Delete) operations for managing employees, using RESTful APIs in Java with Spring Boot. The system allows users to create, view, update, and delete employee records in a database. @@ -81,9 +81,9 @@ This project implements CRUD (Create, Read, Update, Delete) operations for manag - **Request Body**: ```json { - "firstName": "John", - "lastName": "Doe", - "email": "john.doe@example.com", + "firstName": "user_firstname", + "lastName": "user_lastName", + "email": "user.me@example.com", "position": "Software Engineer" } ``` @@ -108,9 +108,9 @@ This project implements CRUD (Create, Read, Update, Delete) operations for manag - **Request Body**: ```json { - "firstName": "Jane", - "lastName": "Doe", - "email": "jane.doe@example.com", + "firstName": "user", + "lastName": "name", + "email": "user.me@example.com", "position": "Manager" } ```