Shamim Ahmmed
Shamim Ahmmed

Reputation: 8383

Adding Employee record into Quickbooks system using SDK

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:

enter image description here

Thanks

Upvotes: 0

Views: 670

Answers (1)

Keith Palmer Jr.
Keith Palmer Jr.

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

Related Questions