Newer Version Available

This content describes an older version of this product. View Latest

List Organization Limits

This REST feature is currently available through a pilot program and is available in all Development Edition organizations. For information on enabling it for your organization, contact Salesforce.

Note

Use the Limits resource to list limits information for your organization.
  • Max is the limit total for the organization.
  • Remaining is the total number of calls or events left for the organization.
Example usage
1curl https://instance.salesforce.com/services/data/v29.0/limits/ -H "Authorization: Bearer token "X-PrettyPrint:1"
Example request body
none required
Example response body
1{
2    "DailyApiRequests":
3    {
4        "Remaining":"4980",
5        "Max":"5000"
6    },
7    "DailyAsyncApexExecutions":
8    {
9        "Remaining":"250000",
10        "Max":"250000"
11    },
12    "DailyBulkApiRequests":
13    {
14        "Remaining":"3000",
15        "Max":"3000"
16    },
17    "DailyStreamingApiEvents":
18    {
19        "Remaining":"1000",
20        "Max":"1000"
21    },
22    "StreamingApiConcurrentClients":
23    {
24        "Remaining":"10",
25        "Max":"10"
26    },
27    "DataStorageMB":
28    {
29        "Remaining":5,
30        "Max":5
31    },
32    "FileStorageMB":
33    {
34        "Remaining":20,
35        "Max":20
36    },
37    "MassEmail":
38    {
39        "Remaining":10,
40        "Max":10
41    },
42    "SingleEmail":
43    {
44        "Remaining":15,
45        "Max":15
46    }
47}