• hyj
  • NEWBIE
  • 40 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 10
    Questions
  • 10
    Replies
Hi all,

I'm trying to use Job of Bulk APIs.
I found that, parameter 'externalIdFieldName' is required for 'upsert' to specify the Key field.
But I think that, 'delete' and 'update' also need a Key field.
How could I specify it when using Bulk APIs to create a Job?

Thanks
  • March 03, 2016
  • Like
  • 0
Hi all,

I'm trying to create custom object and fields by Metadata APIs.
It is succeeded to create a CustomObject named 'Test1__c'.
When trying to create a CustomField with full name 'Test1__c.Test11__c', I was told that it is succeeded but I could not get the field by describing object 'Test__c'.
Is there anything necessary I miss?
How could I create a field which could be shown in described field list?

Thanks
  • November 25, 2015
  • Like
  • 0
Hi all,

I've started a discussion, https://developer.salesforce.com/forums/ForumsMain?id=906F00000005I5OIAU , but not got expected suggestion.
When I send a web request to login with URL, username and password, the URL should be like this, https://login.salesforce.com/services/Soap/u/29.0 . There is a specified API version number.
I tried some URLs as following:
    1. https://login.salesforce.com/
    2. https://login.salesforce.com/services/Soap
    3. https://login.salesforce.com/services/Soap/u
All the three are invalid. The response messages are:
    1. HTML text for a login page of Salesforce.
    2. /u or /c should be specified.
    3. /u is an invalid version.

So, if I need to login without a specified version number, only for the login request, how could I change the URL text?

Thanks
  • November 04, 2015
  • Like
  • 0
For example:
1. I'm using APIs of version 30.0, then which release notes is useful for me? Spring '14 or any other one?
2. I find that release Spring '15 has something necessary for me, then which API version should I use? 33.0 or any other one?

Thanks
  • October 28, 2015
  • Like
  • 0
I'm coding my integration to get records out from SFDC. I need to show supported version number list before accessing SFDC data.
But I find that:
1. When trying to get versions information from https://login.salesforce.com/services/data , I have to login first to get a session ID.
2. When trying to login SFDC, I have to specify a version number in the URL first like https://login.salesforce.com/services/Soap/u/29.0 .
It seems to be a loop. If I'm not sure which version I could use, I should try several times manually.
Is there any way to login without specifying version number?

As far as I know, when using URL https://login.salesforce.com/services/Soap/u without version number, '/u' would be considered as an invalid version. When using https://login.salesforce.com/services/Soap, '/u' or '/c' is required to be specified.
Any suggestions?

Thanks
  • October 28, 2015
  • Like
  • 0

When updating Lead into SFDC by my C# integration, I meet CANNOT_EXECUTE_FLOW_TRIGGER currentlly. And I find out that it is a known issue and fixed.

But I've no idea how to change my code. Could anybody share me any suggestions?

Thanks

  • October 27, 2015
  • Like
  • 0
Hi all,

I've got a SFDC user sandbox and cuold login successfully with SOAP API.
When I get an object name, E.G. Account, how could I have a check whether I could read or edit its records before really having a try to read out a record or modify a record?
Any suggestion is expected.

Thanks
  • September 02, 2015
  • Like
  • 0
Hi all,

I'm using SFDC API to get Contact data from Salesforce.
My integration works well until I get a new user from my customer.
The session id of their user would get WedException "(401) Unauthorized" with raw response [{"message":"Session expired or invalid","errorCode":"INVALID_SESSION_ID"}] frequently (once per hour sometimes but per minute mostly). When retrying to login, new session id would work for next minute, and then that issue occurs again.

I'm not quite understand why its session id would be expired in so short time.
Is there any reason could cause session id expired?
Any suggestions?

Thanks,
Yinjie
  • July 01, 2015
  • Like
  • 0
Hi all,

Referring to https://help.salesforce.com/apex/HTViewHelpDoc?id=create_test_instance.htm&language=en_US ,
I tried to create a Sandbox.
But in my user Setup, I could not find the management page Sandboxes or Data Management | Sandboxes.
Is there anything I miss?
Any suggestions?

Thanks
  • November 21, 2014
  • Like
  • 0
Hi all,

In my API integraion, I'm using username and password to get a session id and getting data by Http Web Request with this session.
Recently, I'm told that Salesforce would support TLS 1.0 and disable SSL 3.0.
I've no idea what should I change in my integration.
Any suggestions?

Thanks
  • November 20, 2014
  • Like
  • 0
Hi all,

I'm trying to create custom object and fields by Metadata APIs.
It is succeeded to create a CustomObject named 'Test1__c'.
When trying to create a CustomField with full name 'Test1__c.Test11__c', I was told that it is succeeded but I could not get the field by describing object 'Test__c'.
Is there anything necessary I miss?
How could I create a field which could be shown in described field list?

Thanks
  • November 25, 2015
  • Like
  • 0
For example:
1. I'm using APIs of version 30.0, then which release notes is useful for me? Spring '14 or any other one?
2. I find that release Spring '15 has something necessary for me, then which API version should I use? 33.0 or any other one?

Thanks
  • October 28, 2015
  • Like
  • 0
I'm coding my integration to get records out from SFDC. I need to show supported version number list before accessing SFDC data.
But I find that:
1. When trying to get versions information from https://login.salesforce.com/services/data , I have to login first to get a session ID.
2. When trying to login SFDC, I have to specify a version number in the URL first like https://login.salesforce.com/services/Soap/u/29.0 .
It seems to be a loop. If I'm not sure which version I could use, I should try several times manually.
Is there any way to login without specifying version number?

As far as I know, when using URL https://login.salesforce.com/services/Soap/u without version number, '/u' would be considered as an invalid version. When using https://login.salesforce.com/services/Soap, '/u' or '/c' is required to be specified.
Any suggestions?

Thanks
  • October 28, 2015
  • Like
  • 0

When updating Lead into SFDC by my C# integration, I meet CANNOT_EXECUTE_FLOW_TRIGGER currentlly. And I find out that it is a known issue and fixed.

But I've no idea how to change my code. Could anybody share me any suggestions?

Thanks

  • October 27, 2015
  • Like
  • 0
Hi all,

I've got a SFDC user sandbox and cuold login successfully with SOAP API.
When I get an object name, E.G. Account, how could I have a check whether I could read or edit its records before really having a try to read out a record or modify a record?
Any suggestion is expected.

Thanks
  • September 02, 2015
  • Like
  • 0
Hi all,

I'm using SFDC API to get Contact data from Salesforce.
My integration works well until I get a new user from my customer.
The session id of their user would get WedException "(401) Unauthorized" with raw response [{"message":"Session expired or invalid","errorCode":"INVALID_SESSION_ID"}] frequently (once per hour sometimes but per minute mostly). When retrying to login, new session id would work for next minute, and then that issue occurs again.

I'm not quite understand why its session id would be expired in so short time.
Is there any reason could cause session id expired?
Any suggestions?

Thanks,
Yinjie
  • July 01, 2015
  • Like
  • 0
Hi all,

In my API integraion, I'm using username and password to get a session id and getting data by Http Web Request with this session.
Recently, I'm told that Salesforce would support TLS 1.0 and disable SSL 3.0.
I've no idea what should I change in my integration.
Any suggestions?

Thanks
  • November 20, 2014
  • Like
  • 0