Reputation: 8383
I'm using Quickbooks SDK to add employee records but it seems the SDK provides limited number of fields but I want to add information like "Ethnicity", "Disability", "US Veteran" etc.
IMsgSetRequest messageSet = sessionManager.CreateMsgSetRequest("US", 12, 0);
IEmployeeAdd empAdd = messageSet.AppendEmployeeAddRq();
empAdd.LastName.SetValue(employee.LastName);
empAdd.FirstName.SetValue(employee.FirstName);
....
empAdd.Ethnicity /// No such property available
....
IMsgSetResponse responseSet = sessionManager.DoRequests(messageSet);
Is it possible to add such field using QB SDK?
UPDATE:
QB employee screen attached:
Thanks
Upvotes: 0
Views: 670
Reputation: 27952
You should refer to the QuickBooks OSR for reference as to which fields are supported.
If the fields are not in the OSR, then they are not supported via the API.
Neither Ethnicity, Disability, nor US Veteran are fields that the API supports.
Upvotes: 3