You need to sign in to do that
Don't have an account?

Bulk API InvalidJob Error
Hello All,
I am trying to create a Bulk API job doing 'UPSERT' to a custom object and getting the following error.
job = new JobInfo();
job.setObject("Publication__c");
job.setOperation(OperationEnum.upsert);
job.setContentType(ContentType.CSV);
job.setExternalIdFieldName("External_ID__c ");
InvalidJob : Field name provided, External_ID__c is not readable for Publication__c
Any help with more details on the error or how to solve is greately appreciated.
Thanks in advance.
Ramana Maddikunta
The error indicates the user you're using with the API does not have access to the external_id__c field. Check your profile and FLS settings.
All Answers
The error indicates the user you're using with the API does not have access to the external_id__c field. Check your profile and FLS settings.
Thanks! dkodar.