• BrockB
  • NEWBIE
  • 15 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 6
    Replies
All of the documentation I have been reading (which seems to be the latest version) uses API version 31.0
I am tring to login as described here:

https://www.salesforce.com/us/developer/docs/api_asynch/Content/asynch_api_quickstart_login.htm

And just get this result.
<faultcode>sf:UNSUPPORTED_API_VERSION</faultcode><faultstring>UNSUPPORTED_API_VERSION: Invalid Api version specified on URL</faultstring>

Am tring to login to the sandbox environment so using these URLs:
Same result for both URLs:

https://test.salesforce.com/services/Soap/u/31.0
https://test.salesforce.com/services/Soap/c/31.0

When I change it to version 30.0, it works ok.

I'm worried by reading the 31.0 documentation and using api version 30.0, I will end up wasting time trying to get something to work when it never will.

Please help

Hi

I am trying to upsert contacts and accounts via the bulk API and all is working fine except the contact and accounts are not being connected to each other.

I am using a csv spec as described in the documentation to map my columns.
I have a custom external ID called 'User ID' (API name: 'User_ID__c') on my contact object AND on my account object.
I already have an Account record setup with a User id set as 5.
I also have a custom field called 'Display Name' on my contact object.

This is basically the batch CSV file I upsert to the Contact object.

"User ID","Display Name","Account Relationship",
"5","Mr Test","5",


Here is the spec CSV file I upload before the batch:

Salesforce Field,Csv Header,Value,Hint
User_ID__c,"User ID",,
Display_Name__c,"Display Name",,
Account__r.User_ID__c, "Account Relationship",,


The batch is upserted fine and processed without any errors. But the account and contact is not connected. When I monitor the job batch by logging in to the website, and downlaod the request, it does not have the relationship field in it:

"Display_Name__c","User_ID__c","Mr Test","5",



Do relationship fields work with CSV files? I can see there are issues with the XML version via another post

Please help
All of the documentation I have been reading (which seems to be the latest version) uses API version 31.0
I am tring to login as described here:

https://www.salesforce.com/us/developer/docs/api_asynch/Content/asynch_api_quickstart_login.htm

And just get this result.
<faultcode>sf:UNSUPPORTED_API_VERSION</faultcode><faultstring>UNSUPPORTED_API_VERSION: Invalid Api version specified on URL</faultstring>

Am tring to login to the sandbox environment so using these URLs:
Same result for both URLs:

https://test.salesforce.com/services/Soap/u/31.0
https://test.salesforce.com/services/Soap/c/31.0

When I change it to version 30.0, it works ok.

I'm worried by reading the 31.0 documentation and using api version 30.0, I will end up wasting time trying to get something to work when it never will.

Please help

All of the documentation I have been reading (which seems to be the latest version) uses API version 31.0
I am tring to login as described here:

https://www.salesforce.com/us/developer/docs/api_asynch/Content/asynch_api_quickstart_login.htm

And just get this result.
<faultcode>sf:UNSUPPORTED_API_VERSION</faultcode><faultstring>UNSUPPORTED_API_VERSION: Invalid Api version specified on URL</faultstring>

Am tring to login to the sandbox environment so using these URLs:
Same result for both URLs:

https://test.salesforce.com/services/Soap/u/31.0
https://test.salesforce.com/services/Soap/c/31.0

When I change it to version 30.0, it works ok.

I'm worried by reading the 31.0 documentation and using api version 30.0, I will end up wasting time trying to get something to work when it never will.

Please help

Hi

I am trying to upsert contacts and accounts via the bulk API and all is working fine except the contact and accounts are not being connected to each other.

I am using a csv spec as described in the documentation to map my columns.
I have a custom external ID called 'User ID' (API name: 'User_ID__c') on my contact object AND on my account object.
I already have an Account record setup with a User id set as 5.
I also have a custom field called 'Display Name' on my contact object.

This is basically the batch CSV file I upsert to the Contact object.

"User ID","Display Name","Account Relationship",
"5","Mr Test","5",


Here is the spec CSV file I upload before the batch:

Salesforce Field,Csv Header,Value,Hint
User_ID__c,"User ID",,
Display_Name__c,"Display Name",,
Account__r.User_ID__c, "Account Relationship",,


The batch is upserted fine and processed without any errors. But the account and contact is not connected. When I monitor the job batch by logging in to the website, and downlaod the request, it does not have the relationship field in it:

"Display_Name__c","User_ID__c","Mr Test","5",



Do relationship fields work with CSV files? I can see there are issues with the XML version via another post

Please help