I am trying to write query to add data from a csv file to specific fields in an existing sql table in mssms.

Errors
Msg 4864, Level 16, State 1, Line 1
Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 2, column 1 (Id).
Msg 4864, Level 16, State 1, Line 1
Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 3, column 1 (Id).
Msg 4864, Level 16, State 1, Line 1
Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 4, column 1 (Id).
Msg 4865, Level 16, State 1, Line 1
Cannot bulk load because the maximum number of errors (2) was exceeded.
Msg 7399, Level 16, State 1, Line 1
The OLE DB provider "BULK" for linked server "(null)" reported an error. The provider did not give any information about the error.
Msg 7330, Level 16, State 2, Line 1
Cannot fetch a row from OLE DB provider "BULK" for linked server "(null)".
Written code:
INSERT INTO dbo.Item (Details, DatePost, Description, Amount, Type, Balance, CheckSlipNumber)
FROM 'C:\Users\User1\Desktop\Import\Chase2066_Activity_20230213.csv'
WITH
(FIRSTROW = 2,
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n',
)