Click or drag to resize

TimeExportParamInEmpIdentifiers Property

Specifies the Users to be included in the export

Namespace: AppOne.Web.Service.Services.V1R0.Customer.Contracts
Assembly: AppOne.Web.Service (in AppOne.Web.Service.dll) Version: 1.0.141
Syntax
public List<string> EmpIdentifiers { get; set; }

Property Value

ListString
Remarks
Note  Note
Employee Selection:

All Employees: To export all employees present in the selected time frame set the EmpIdentifiers value to an empty string or null. Any specification of EmpIdentifier values will return only the specified employees

Examples:
"EmpIdentifiers"=null
"EmpIdentifiers"=[null]
"EmpIdentifiers"=[""]

Specific Employees: To export a specific subset of employees enter their Employee Identifiers in string format within the EmpIdentifiers property

Examples:
"EmpIdentifiers"=["1234"]
"EmpIdentifiers"=["1234","5678"]

When searching for users - if no users are found with any of the specified EmpIdentifier criteria (e.g. ["1234","4567"] is passed in as a value but no employees are found with those identifiers) then the search will return no results.
Example
1234
See Also