-
Type:
Change Request
-
Status: Closed
-
Priority:
Medium
-
Resolution: Done
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: Integrations
-
Labels:None
-
Module:TSR
-
Reported by:Harbinger
-
Item State:Production Complete - Closed
-
Issue Importance:Q1
-
Severity:Medium
1. Launch the Postman app.
2. Select “Post” request from dropdwon.
3. Select authorization type as “Basic Auth”.
4. Enter valid User ID and Password.
5. Enter below URL:
http://10.0.2.120/api/employee/addEmployeeToury=12480
6. Pass the require parameter using body.
7. Click on Send button.
Observe the error messages in following scenarios:
*Scenario 1 * Try to add duplicate user with existing Candidate ID and Email ID. Below error message is displaying:
{
"status": "Error",
"message": "Employee record not saved",
"errorLevel": "Information",
"code": 400,
"description": "Invalid employee parameters"
}
Looking at this error message user is not able to understand what's is invalid parameter, so we need to change the description like:
CandidateId and Email ID already exists. (If both are duplicate)
CandidateId/Email ID already exists. (Any one of them duplicate)
Scenario 2 :
Below message is not as per specification:
{
"status": "Failed",
"message": "Bad parameters",
"errorLevel": "Information",
"code": 400,
"description": "Required parameter company is missing"
}
Above message is displaying in below scenarios:
A] Mandatory field is blank
B] Invalid Username/Password
We will add more scenarios to this ticket as an when we are come across such scenarios.
- relates to
-
NF-180 TSR: API: Add Employee- generate & assign defaults
-
- Closed
-
We have added validation & error messages as per specific field now.