POST api/EmployeeLookup

Gets employee demographics/information by SSN and company code.

Request Information

Parameters

NameDescriptionAdditional information
employeeSsnCompanyCodeList
An array of strings. Each string must be of the format: "SSN/CompanyCode".
            	
            		Example curl request:
            		
            			curl -X POST \
            				-H 'Content-Type: application/json' \
            				'{baseUrl}/EmployeeLookup' \
            				-d '[
            						"123-45-6789/ABC",
            						"987654321/CBA",
            						...
            					]'
            		
            		The forward slash '/' is required in each string to delimit the SSN and company code. The endpoint will fail without the forward slash.
            		An employee lookup string can have hyphens (-) or not.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
[
  "sample string 1",
  "sample string 2",
  "sample string 3"
]

application/xml, text/xml

Sample:
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <string>sample string 1</string>
  <string>sample string 2</string>
  <string>sample string 3</string>
</ArrayOfstring>

Response Information

List of

Response body formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.