ads

Tuesday 28 August 2018

SOAP API Methods using WSDL from Salesforce

1.) create()


2.) update()

3.) upsert()

4.) delete()

5.) merge()

6.) query()
To perform an initial query against a Salesforce Org.

7.) queryAll()
To perform a query against a Salesforce org that returns records in the Recycle Bin as well as active records.

8.) queryMore()
To get additional batch results from a query. Default batch size is 500. Minimum batch size is 200 and maximum batch size is 2000.

9.) retrieve()
To retrieve data from objects based on their ids.

Example:
retrieve("Id, Name, Website", "Accounts", ids)

10. emptyRecycleBin()

11. login()
Uses username and password to log in. Gets session id and URL to maintain the connection.

12. logout()

13. search()

14. getDeleted()
Retrieves deleted records for the specific time interval.

Example:
getDeleted("Account", StartTime, EndTime)

15. getUpdated()
Retrieves updated records for the specific time interval.

Example:
getUpdated("Account", StartTime, EndTime)

16.getUserInfo()

17.) resetPassword() 

18.) convertLead()

19.) process()

20.) getServerTimeStamp()

21. setPassword()

22. sendEmail()

23. sendEmailMessage()

24.) describeTabs()

25.) describeLayout()

26.) describeGlobal()

27.) describeSObjects()

28. describesoftphoneLayout()

No comments:

Post a Comment