An API that connects multiple Microsoft services, enabling data access and automation across platforms
Employee ID is not one of the default columns in the bulk user creation CSV template for Microsoft Entra ID, so it cannot be added just by inventing a header such as EmployeeId [employeeId].
For bulk create to work, the CSV must use exactly the columns provided in the downloaded template. Only the documented columns are processed; any additional or custom columns (including an employeeId column) are ignored.
To include Employee ID for users created in bulk:
- First perform the bulk user creation using the standard template downloaded from Entra ID > Users > Bulk create, filling in only the supported columns (for example, Name, User principal name, Initial password, Block sign in, and any other optional columns present in that template).
- After the users are created, update the
employeeIdattribute using another method that supports that property, such as Microsoft Graph PowerShell (Update-MgUserwith theEmployeeIdproperty) or another provisioning mechanism that can write toemployeeId.
The key point is that the bulk create CSV cannot be extended with a working employeeId column; the service will ignore unsupported headers.
References: