An application programming interface (API) is a specification intended to be used as an interface by software components to communicate with each other.
2
votes
1answer
60 views
Salesforce: Any API for getting user information?
I am trying to find a way to get the information about the salesforce enterprise user from his auth_token. I want to find the username, email address and role(admin/user) from the auth-token.
...
5
votes
3answers
93 views
Where did the line numbers go (browser editor)?
Using Google Chrome to edit Apex code / VF Pages in the Browser directly from test.salesforce.com. This has worked well for me (way better than the Developer Console or Eclipse - my programs are ...
0
votes
1answer
23 views
Query Account history using API
Is there a way to query the account history using php and the API? I have some accounts that got updated unnecessarily and I need to view the history to programmatically update them all back to their ...
-3
votes
0answers
29 views
how to get() data from external system [closed]
My requirement is I am trying to pull information from Salesforce to SAP (by passing the in the field "IvAcctNo" to SAP , I need to get the related record details and display it in salesforce).How to ...
2
votes
2answers
60 views
Determine sobject Type From Id Using SOAP API
I'm using C# and would like to determine the type of an sObject based on it's id.
I would like to pass an id to my app and have it return a list of accounts related to it. I need to identify the ...
2
votes
1answer
45 views
How to get Field name
I have a VF page where admin can select fields which need to be displayed. And on an another Vf page i am getting the API name of all the selected fields in 1st Vf page. This much is working fine i ...
0
votes
0answers
24 views
How to connect to SAP from Salesforce with the SAP SD wsdl [duplicate]
Having SAP SD WSDL file how can I connect to SAP from Salesforce ?
After connecting with salesforce, I only want to view the data.
1.Now i convert this WSDL file into apex classes next step what can ...
3
votes
2answers
65 views
accessing the Streaming API from a public-facing Force.com Site
I've got a telemetry application for which the Streaming API would be extremely useful. However I want the subscriptions to be publicly accessible. (So that anyone with the client can waltz up and ...
3
votes
0answers
25 views
Report CSV export from API [duplicate]
Right now we are using Beatbox for the connection between Python and Salesforce.
We were wondering if its possible to get the csv file from the report export using the following URL using Python ...
0
votes
0answers
19 views
Invalid Session ID error appearing randomly
I am using the PHP partner API for salesforce and am coming across a rather odd issue randomly. Here is the error message I am getting:
Fatal error: Uncaught SoapFault exception: ...
7
votes
3answers
70 views
Know if is a custom profile via API
Is it possible to know if a profile is custom via API?
Like an attribute "profile.isCustom".
1
vote
0answers
38 views
Error [sforce-2900000]: INVALID_FIELD: Can select only RecordId, a Has*Access field, and MaxAccessLevel
Running the below query returns and error message
"Error [sforce-2900000]: INVALID_FIELD: Can select only RecordId, a Has*Access field, and MaxAccessLevel"
SELECT
RecordId,
HasReadAccess,
...
2
votes
1answer
27 views
Where is the API documentation for Apex InboundEmail?
I want to know all the API's in
Messaging.InboundEnvelope
and
Messaging.InboundEmail
I google and all I get is tutorials. I want the API's.
I want to see if I can get the sent date of the ...
0
votes
2answers
22 views
InsideSales Dialer - field security has to be bypassed?
Anyone out there using the InsideSales dialer?
I recently was advised that, after I turned OFF an option I would never want on to begin with for most of our profiles... Edit Read Only Fields... ...
8
votes
2answers
195 views
How do I use the Tooling API to create a new Apex Trigger?
How do I use the Tooling API to create a new Apex Trigger (rather than update an existing one)?
According to the documentation I need to specify the ContentEntityId as an existing Trigger Id. But in ...