Employee
Last updated
Was this helpful?
Last updated
Was this helpful?
APIs available from Employee Information System for employee services to -
create statewide standardized database of the employee to streamline processes related to personnel management
increase transparency for higher management for efficient resource planning
integrate with rainmaker modules for security, authentication and workflow handling
establish KPIs for employees and generate reports
Get the employee list based on the input parameters. Response will give the minimum set of information related to the employee.
/employees/_search
List of employee codes
List of employee names
List of Department codes for the employee assignment.
List of Designation codes for the employee assignment.
Epoch Date of assignment
List of Unique Id of employee
List of Unique codes of employee status
List of Unique codes of employee type
List of Unique uuid of employee
List of Unique Positions
List of Roles of employee
Phone Number
True will return active employees, False otherwise
Offset of the search result
No of records to be returned from the offset
Tenant id
unique API ID
API version - for HTTP based request this will be same as used in path
time in epoch
API action to be performed like _create, _update, _search (denoting POST, PUT, GET) or _oauth etc
Device ID from which the API is called
API key (API key provided to the caller in case of server to server communication)
Unique request message id from the caller
UserId of the user calling
//session/jwt/saml token/oauth token - the usual value that would go into HTTP bearer token
This is acting ID token of the authenticated user on the server. Any value provided by the clients will be ignored and actual user based on authtoken will be used on the server.
To create a new employee we can use POST and set all the required and non-mandatory parameters. When an employee is created, an user is also created along with it. Type value in object will be "EMPLOYEE".
/employees/_create
RequestInfo should be used to carry meta information about the requests to the server as described in the fields below. All eGov APIs will use requestinfo as a part of the request body to carry this meta information. Some of this information will be returned back from the server as part of the ResponseInfo in the response body to ensure correlation.
To update an existing employee's employee details and all other details like assignment, jurisdiction, qualification service details and porbation. This API will also be used for deactivating an employee
/employees/_update
RequestInfo should be used to carry meta information about the requests to the server as described in the fields below. All eGov APIs will use requestinfo as a part of the request body to carry this meta information. Some of this information will be returned back from the server as part of the ResponseInfo in the response body to ensure correlation.