This Employees Data MBaaS Service contains...
These endpoints have to do with the event data uploaded by RH Marketing Operations
- Parameters
- id: 1 (number) - A unique identifier of the employee.
Endpoint to obtain the employee object associated with the provided ID
- Response 200 (application/json)
- Body { "type": "1", "id" : 123, "firstName": "PETER", "lastName": "SELLERS", "email": "ps@example.com", "department": "ACTORS", "source": "LOCAL" }
These endpoints have to do with querying
This endpoint return employees matching the provided criteria object.
-
Request (application/json)
- Body { "eq" : { "type" : "1" } }
-
Response 200 (application/json)
- Body [ { "type": "1", "firstName": "PETER", "lastName": "SELLERS", "email": "ps@example.com", "department": "ACTORS", "source": "LOCAL" } ]