function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Apollo VinApollo Vin 

Data export without API

This might seem like a pretty elementary question.
Current number of API requests is exceded. So I am looking for a way to export data from Salesforce without the API.
Is there any way to export data without API or maybe some 3rd party products "increase" API request limit?
Does Apex/Visualforce selfdefeloped apps also use API and could exceeds number of API requests?
NagendraNagendra (Salesforce Developers) 
Hi Apollo,

If the default API Limit is insufficient for your business requirements, you can request an increase to the limit, temporarily or permanently.

Resolution  is by considering the following
 
Permanently increasing your API limit, or for more than 2 weeks, can be performed by contacting your Account Executive. 
Important: Support will not be able to assist you with this activation.

You may also increase your API limit for a maximum period of two weeks by logging a Support case in the Help & Training portal. Please include the following:  

1. Are you the System Administrator authorized on behalf of this Organization to request this feature and that you understand the implications of having this feature activated?
2. What is the Organization ID of the production or sandbox instance where you would like to enable this feature?  (Navigate to Setup | Company Profile | Company Information):  
3. How many API calls are you requesting to obtain temporarily?  
4. Requested duration for the API calls increase (max of 2 weeks): 

Note: Support can only make this increase on a one-off basis and requests for concurrent two-week periods will not be granted. 

5. Business Case: Why do you need the feature activated? 
6. Are you doing data upload/migration or integration?
   
   
a) In the case of data upload/migration:
 
How many records and what objects will you upload?
What batch size is being used?
What tool will be used? Is the bulk API used? Notice the bulk API allows to upload 10,000 records/batch x number of batches. 
b) In the case of an integration
 
What specific API calls will they integration be sending and how many?
What application will be used?

If the Organization that needs the increase is owned by a Partner:
 
    Have a System Administrator log a Case with Salesforce Partner Support.
    Please include all important details including the Organization ID and             a business case for the request.
    Partner Support will review the Case and action it as needed.

Hope this helps.

Regards,
Nagendra.
 
Diego Arenas CasadoDiego Arenas Casado
Hi Apollo

You can make a report and then export it to csv and you get the data without consuming API.

Regards
Diego Arenas
Anurag VermaAnurag Verma
Hi Apollo,

You can use the data export service of Salesforce. Data Export lets you prepare a copy of all your data in salesforce.com. It is available under Administer > Data Management > Data Export. From this page you can start the export process manually or schedule it to run automatically. When an export is ready for download you will receive an email containing a link that allows you to download the file(s).

Thanks,
Anurag
Apollo VinApollo Vin
Thank's for replies.