Click or drag to resize

ServiceRouterUserInfoInsertBatch Method

Adds or updates a List<UserInfoAddParamsOut> collection of users

Namespace: AppOne.Web.Service.Services.V1R0
Assembly: AppOne.Web.Service (in AppOne.Web.Service.dll) Version: 1.0.141
Syntax
public List<UserInfoAddParamsOut> UserInfoInsertBatch(
	List<UserInfoModel> users
)

Parameters

users  ListUserInfoModel
A new List<UserInfoAddParamsOut> collection

Return Value

ListUserInfoAddParamsOut
A List<UserInfoAddParamsOut> collection
Remarks
Use this method for either creating new records or to update existing records. If EmpIdentifier already exists in the data store then it will be updated, otherwise a new user will be created.

Please note that for larger batch requests this process can take several minutes before a response is returned. Be sure that your requesting service is able to keep the connection alive during longer running processes. If you want to validate the connection threshold in smaller increments we suggest cutting down the inbound batch size. So for example if a 5,000 user batch request takes 5 minutes and you are looking for quicker response times, we suggest you send in records in increments of 1,000 so you can get the response back every minute.
See Also