SOAP API provides a powerful, convenient, and simple SOAP-based Web services interface for interacting with Salesforce.You can use SOAP API to create, retrieve, update, or delete records. You can also use SOAP API to perform searches and much more. Use SOAP API in any language that supports Web ...

learn more… | top users | synonyms

-2
votes
0answers
18 views

How can I retrieve roles and businessunits assigned to each accountuser under parent Account(2.0)

My Requirement is to read the Users that are assigned with different roles and BusinessUnits in our Enterprise Account. Will I be able to get both list of roles and business nits in a single SOAP API ...
1
vote
0answers
28 views

Getting error while integrating php with salesforce

I have integrated my PHP application with salesforce. I cant retrieve any data from salesforce . I am getting this following error . org_config.php <?php define("USERNAME", ...
1
vote
2answers
99 views

Salesforce to Salesforce connection using Apex, Callouts and SOAP APIs

We have continuous need to move some configuration related data from Salesforce Sandbox to Salesforce Production environment. End users are not comfortable with using data loader and need some simple ...
3
votes
1answer
99 views

Winter '16 breaks soap API 33.0 DescribeLayout() with VisualforcePage

We have an application that calls the DescribeLayout( ) API method using API version 33.0. This method call began breaking in sandbox following the Winter '16 upgrade. We are getting the following ...
8
votes
1answer
185 views

Winter '16 breaks the Summer '15 Partner API with invalid soapType

With Winter '16 starting to appear on Sandboxes I've started encountering problems with the Partner SOAP API. The initial problem is around the new soapType enumeration values. In particular ...
0
votes
0answers
17 views

ANSWERED: Sample Java Code to get Fields available for Retrieval using Axis2Client [on hold]

This is an implementation in the ETClient class using Axis2Client libraries: private static void Describe(String objectType){ //step 1, define the configuration context ...
3
votes
1answer
719 views

connection refused error message coming from a java client connecting to salesforce

We have a java web application which makes a soap request to salesforce to get some data. We moved to production today and we noticed that on some requests, we are getting a connection refused error ...
0
votes
1answer
27 views

How to get case entities using SOAP

I've managed to get account data, but now I'm trying to get a case object - any case object - with no luck and, apparently, no example code. To get accounts, I'm using this code: $accounts = ...
1
vote
0answers
16 views

Mutual Authentication / two way SSL & OAuth

Could you kindly help with following API authentication related questions: Would Mutual Authentication / two way SSL described in this link works in combination with OAuth authentication? Does ...
0
votes
1answer
20 views

Enabling Users to Access File in Blocked Domain

We built an integration with Box.com. Sound files are stored in Box and then the public link to each file is stored on a record in Salesforce. The integration for this is done through Zapier. The url ...
0
votes
0answers
20 views

Am I using wrong version of SalesForceAPI? [duplicate]

One of our data Provider who happens to be on SuccessFactor/SalesForce world, gave us SOAP URl to call to work with salesForce. Now, I added the WSDL as a Web Reference and now I have a client to ...
0
votes
1answer
27 views

How do I use SessionID for subsequent requests after successfully logging in

One of our provider has a salesforce system in place and they have send us the URL. I added the reference as a Web Reference since adding it as a Service Reference had some issues. Now, I am able to ...
1
vote
0answers
18 views

Associate the DocuSign envelope to opportunity using the API

I'm trying to send envelopes using the API and am receiving a bug where it creates the status and is working with Salesforce, but isn't associating it to the opportunity. I'm getting an error ...
1
vote
1answer
24 views

SOAP-API partner.jar creation problem

I want to generate partner.jar. My path is :- java -classpath "C:\Program Files\Java\jdk1.7.0_79\lib\wsc-23.jar;C:\Program Files\Java\jdk1.7.0_79\lib\tools.jar"com.sforce.ws.tools.wsdlc ...
1
vote
2answers
155 views

SOQL query not returning results

I'm querying Salesforce data via the API using the query : SELECT Id, field FROM User Where field IN ('value1','value2',....'value500'). This does not return any results, despite the character ...
2
votes
1answer
403 views

SOAP RetrieveRequest: Object reference not set to an instance of an object

Any ideas why the following SOAP request is throwing the error "Object reference not set to an instance of an object." ? I'm following the documentation almost exactly: ...
1
vote
1answer
249 views

Accessing another salesforce org from apex class

First of all, Wish you a very happy new year. :) I have an issue in assigning Session id while I am trying to login to another salesforce org using SOAP API. Here is the code. ...
1
vote
1answer
156 views

ExactTarget - SOAP API Get All List Data

This has to be a common case. I would like to create a RetrieveRequest to get All Lists in the ExactTarget Email Marketing Cloud. I have tried SimpleOperators against the ListName (isNotNull, ...
0
votes
1answer
35 views

401 Unauthorized access while accessing Sahre Point through NTLM authentication(Windows authentication) from APEX

I was trying to callout Share point Service from apex using REST API.Which is having windows authentication which is of type NTLM. But i was getting 401 Unauthorized access.But i was able to access ...
1
vote
1answer
42 views

How can I connect two Salesforce.com orgs by using the partner WSDL?

I would like OrgA to consume the Partner WSDL and connect to OrgB. OrgA should then be able to create a list of records (i.e. Cases) in OrgB. I read some of the related posts including this one but ...
1
vote
2answers
130 views

Does the legacy token aka internal oauth token ever expire?

https://code.exacttarget.com/app-development/marketing-cloud-apps/single-sign-on.html describes the request->user->internalOauthToken as: An OAuth2 token that can access Email SOAP API. It ...
2
votes
1answer
33 views

“In” clause in Soap Api SOQL query fetch records

In apex, I can write a query like: [select id from contact where accountid in:accountIdSet] If I use the Soap Api to do a query in external application(.Net), how can I do the same thing? I know ...
2
votes
0answers
21 views

How can I upload data containing DateTime and Boolean values into Exact Target Data Extension

I have written .NET code to upload data into Exact Target Data Extension. My Data Extension contains multiple fields of types Text, Number, Boolean, Date. How can I upload the data with Date and ...
0
votes
0answers
18 views

Unable to make REST API call on custom report created using SOAP API

I've created a custom report type with below relation using SOAP api Accounts (A) with at least one related record from Contacts (B) with at least one related record from Opportunities (C) with at ...
2
votes
2answers
134 views

INVALID_ID_FIELD when upserting an attachment through Bulk API

The situation is as follows: In my Salesforce org, I have a contact, let's call it Humpty Dumpty, and I'd like to attach a file to it, let's call it cooking.txt, but there are some rules: If there ...
0
votes
1answer
272 views

C# SOAP Client code to send out a simple trackable email with ExactTarget APIs

Honestly, I am so lost in the definitions of ExactTarget APIs, and while I was able to figure out how to create email, I find the process of actually sending the email, quite convoluted. Does anyone ...
-1
votes
0answers
29 views

SOAP-API authentication using java and apex

how to create wsdl connector using cmd .I am not understand this part of soap API using java class .If I tried this using apex then how can i achieve this?
1
vote
1answer
80 views

Integrating Salesforce CRM to Exact Target

I Have a requirement to call Soap API of Exact target via a callout from my Salesforce CRM Apex class. I am using the WSDL2APex approach and i'm able to successfully make the call to exact target and ...
2
votes
1answer
323 views

Metadata API exception: IO Exception: Exceeded max size limit of 3000000

I am using Metadata API to get information about org. I want to retrieve all custom fields present in my org. I am using listMetadata() method which returns list of components. Below is my code: ...
0
votes
0answers
17 views

Need Info on SaveAction.UpdateAdd in CreateRequest API

Does SaveAction.UpdateAdd in CreateRequest replace the existing AccountUser in ExactTarget? I know from the documentation that if this property is specified "the save action will update existing ...
0
votes
1answer
45 views

etAPI dll. Where can I find it?

Finding information on this is not easy. I have tried searching online etAPI with many search string various with no real results. The documentation references this dll without bothering to mention ...
0
votes
0answers
12 views

Managing publication lists via c# soap api

I have implemented the code found in the documentation: EmailSendDefinition esd = new EmailSendDefinition(); esd.Email = new Email(); esd.Email.ID = 12345; //The ID of the email I wish to ...
2
votes
0answers
13 views

Chunking SObject in SOAP API

I am running a backup on Attachments object using the query: SELECT Id, IsDeleted, ParentId, Name, IsPrivate, ContentType, BodyLength, OwnerId, CreatedDate, CreatedById, LastModifiedDate, ...
0
votes
0answers
17 views

How to get Contact PhotoUrl in Salesforce using SOAP API and partner WSDL?

I managed to query the fields and it returns the image names as expected. Issue is , it shows the image only if i have an active salesforce login session ( if i log into salesforce in another browser ...
0
votes
1answer
67 views

Developing a Windows Hybrid App for Partner Users - What Toolkit? [closed]

I am developing a Phonegap app for Partner users. It needs to be on javascript so I tried ForceTK with no luck. Is this possible?
0
votes
1answer
587 views

Failed to send request to Salesforce url

I am working on Java ( JSP & Servlet ) I am creating JAVA Dynamic Web project to Create SalesForce Data Loader... I am using SOAP API as Web Service... I am using sales force "Partner WSDL" API ...
5
votes
1answer
37 views

Regarding web services

Though I’m working on Salesforce platform for some time but I’m still new to webservices and reading a lot about it recently. I’m working independently and recently my customer( little tech Savvy) ...
1
vote
1answer
25 views

How to form SOAP XML request to update Salesforce dara

Is anyone has some idea how can i use DOM or XmlStreamWriter to generate SOAP XML request for Salesforce? Can we use these classes to generate SOAP XML request or not? I tried following code but ...
3
votes
2answers
3k views

Forming SOAP header through apex class if the WSDL provided has no information regarding the header

<soapenv:Header> <wsse:Security SOAP-ENV:mustUnderstand="1" xmlns:SOAP-ENV="SOAP-ENV"> <wsse:UsernameToken wsu:Id="UsernameToken-1" ...
5
votes
4answers
418 views

C# DateTime Serialization to CST for ExactTarget SOAP API

I have contacted Exact Target support for this but they sent me here. I can't seem to get results back from the API that match my date time filters. I think they are telling me that my DateTime needs ...
1
vote
1answer
31 views

Simple Exact Target API Request: Retrieve Subscriber info from list specified by list ID and subscriber key

Tech support sent me here to ask this question. I would like to set up an ET API call that would return subscriber information (i.e., attributes) for a specific user (using subscriberkey) from a ...
5
votes
2answers
190 views

Create OwnerSharingRule via Salesforce Metadata API

I'm currently struggling in creating a ContactOwnerSharingRule via the Salesforce Metadata API. I am using Ruby and the metaforce gem. I am using the the create-method which calls out to the SOAP ...
2
votes
2answers
830 views

Trigger Welcome Email after adding new subscriber via API?

I have a web form that adds subscribers to a list via the API but because i'm using the API rather than web collect it won't send out the welcome email. How would I send send the welcome email via ...
1
vote
2answers
38 views

Decrypting Salesforce Encrypted Fields

I'm storing user passwords for an external web service in salesforce, in encrypted fields. Using the SOAP API in JavaScript, I wish to use the password in a REST request. However, I'm unable to ...
-1
votes
1answer
42 views

Is there a good video showing how to use SoapUI with SalesForce/ExactTarget APIs?

Anyone that has successfully used SoapUI (free version) to make and debug SOAP requests to ExactTarget endpoints? I will gladly buy you lunch if you can show me how this is done. If I understand the ...
0
votes
0answers
5 views

Is it possible to do an Extract SentEvent with the FuelPHP-SDK?

I need to make a Extract SentEvent via SOAP API. It seems that on the developer portal, the example PHP code to do extract actions via SOAP API is deprecated.[1] My Hub App clientID and secret have ...
1
vote
2answers
19 views

Delete Subscriber from a list using Soap API

I see the documentation for deleting a subscriber from a list in the xml api docs: ...
0
votes
1answer
26 views

Downloading all lead data through oAuth2 API

Completely new to the Salesforce API. I'd like to simply download all lead and contact information from a connected user's account - that is, anything which has an "Email" field. I've only briefly ...
1
vote
1answer
169 views

adding a large number of subscribers to an ExactTarget list ssjs

I have a large number of subscribers I need need to move from an ExactTarget data extension into different lists using ssjs. This is the basic script I am using <pre> <script ...
1
vote
1answer
207 views

Is it required to create parent and child records in single Salesforce create call of PHP toolkit?

When we are storing parent and child records in single salesforce create call using PHP toolkit is it required the External_ID_Field__c same name in both objects? or we can use any field which is ...