Chilkat Online Tools

autoit / Salesforce Platform APIs / Limits

Back to Collection Items

; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

$oHttp = ObjCreate("Chilkat.Http")
Local $bSuccess

; Adds the "Authorization: Bearer <access_token>" header.
$oHttp.AuthToken = "<access_token>"

$oSbResponseBody = ObjCreate("Chilkat.StringBuilder")
$bSuccess = $oHttp.QuickGetSb("https://domain.com/services/data/v{{version}}/limits",$oSbResponseBody)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

$oJResp = ObjCreate("Chilkat.JsonObject")
$oJResp.LoadSb($oSbResponseBody)
$oJResp.EmitCompact = False

ConsoleWrite("Response Body:" & @CRLF)
ConsoleWrite($oJResp.Emit() & @CRLF)

Local $iRespStatusCode = $oHttp.LastStatus
ConsoleWrite("Response Status Code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode >= 400) Then
    ConsoleWrite("Response Header:" & @CRLF)
    ConsoleWrite($oHttp.LastHeader & @CRLF)
    ConsoleWrite("Failed." & @CRLF)
    Exit
EndIf

; Sample JSON response:
; (Sample code for parsing the JSON response is shown below)

; {
;   "ActiveScratchOrgs": {
;     "Max": 3,
;     "Remaining": 3
;   },
;   "AnalyticsExternalDataSizeMB": {
;     "Max": 40960,
;     "Remaining": 40960
;   },
;   "ConcurrentAsyncGetReportInstances": {
;     "Max": 200,
;     "Remaining": 200
;   },
;   "ConcurrentEinsteinDataInsightsStoryCreation": {
;     "Max": 5,
;     "Remaining": 5
;   },
;   "ConcurrentEinsteinDiscoveryStoryCreation": {
;     "Max": 2,
;     "Remaining": 2
;   },
;   "ConcurrentSyncReportRuns": {
;     "Max": 20,
;     "Remaining": 20
;   },
;   "DailyAnalyticsDataflowJobExecutions": {
;     "Max": 60,
;     "Remaining": 60
;   },
;   "DailyAnalyticsUploadedFilesSizeMB": {
;     "Max": 51200,
;     "Remaining": 51200
;   },
;   "DailyApiRequests": {
;     "Max": 15000,
;     "Remaining": 14999
;   },
;   "DailyAsyncApexExecutions": {
;     "Max": 250000,
;     "Remaining": 250000
;   },
;   "DailyAsyncApexTests": {
;     "Max": 540,
;     "Remaining": 540
;   },
;   "DailyBulkApiBatches": {
;     "Max": 15000,
;     "Remaining": 15000
;   },
;   "DailyBulkV2QueryFileStorageMB": {
;     "Max": 976562,
;     "Remaining": 976562
;   },
;   "DailyBulkV2QueryJobs": {
;     "Max": 10000,
;     "Remaining": 10000
;   },
;   "DailyDeliveredPlatformEvents": {
;     "Max": 10000,
;     "Remaining": 10000
;   },
;   "DailyDurableGenericStreamingApiEvents": {
;     "Max": 10000,
;     "Remaining": 10000
;   },
;   "DailyDurableStreamingApiEvents": {
;     "Max": 10000,
;     "Remaining": 10000
;   },
;   "DailyEinsteinDataInsightsStoryCreation": {
;     "Max": 1000,
;     "Remaining": 1000
;   },
;   "DailyEinsteinDiscoveryOptimizationJobRuns": {
;     "Max": 25,
;     "Remaining": 25
;   },
;   "DailyEinsteinDiscoveryPredictAPICalls": {
;     "Max": 50000,
;     "Remaining": 50000
;   },
;   "DailyEinsteinDiscoveryPredictionsByCDC": {
;     "Max": 500000,
;     "Remaining": 500000
;   },
;   "DailyEinsteinDiscoveryStoryCreation": {
;     "Max": 100,
;     "Remaining": 100
;   },
;   "DailyFunctionsApiCallLimit": {
;     "Max": 50000,
;     "Remaining": 50000
;   },
;   "DailyGenericStreamingApiEvents": {
;     "Max": 10000,
;     "Remaining": 10000
;   },
;   "DailyScratchOrgs": {
;     "Max": 6,
;     "Remaining": 6
;   },
;   "DailyStandardVolumePlatformEvents": {
;     "Max": 10000,
;     "Remaining": 10000
;   },
;   "DailyStreamingApiEvents": {
;     "Max": 10000,
;     "Remaining": 10000
;   },
;   "DailyWorkflowEmails": {
;     "Max": 405,
;     "Remaining": 405
;   },
;   "DataStorageMB": {
;     "Max": 5,
;     "Remaining": 5
;   },
;   "DurableStreamingApiConcurrentClients": {
;     "Max": 20,
;     "Remaining": 20
;   },
;   "FileStorageMB": {
;     "Max": 20,
;     "Remaining": 20
;   },
;   "HourlyAsyncReportRuns": {
;     "Max": 1200,
;     "Remaining": 1200
;   },
;   "HourlyDashboardRefreshes": {
;     "Max": 200,
;     "Remaining": 200
;   },
;   "HourlyDashboardResults": {
;     "Max": 5000,
;     "Remaining": 5000
;   },
;   "HourlyDashboardStatuses": {
;     "Max": 999999999,
;     "Remaining": 999999999
;   },
;   "HourlyLongTermIdMapping": {
;     "Max": 100000,
;     "Remaining": 100000
;   },
;   "HourlyManagedContentPublicRequests": {
;     "Max": 50000,
;     "Remaining": 50000
;   },
;   "HourlyODataCallout": {
;     "Max": 1000,
;     "Remaining": 1000
;   },
;   "HourlyPublishedPlatformEvents": {
;     "Max": 50000,
;     "Remaining": 50000
;   },
;   "HourlyPublishedStandardVolumePlatformEvents": {
;     "Max": 1000,
;     "Remaining": 1000
;   },
;   "HourlyShortTermIdMapping": {
;     "Max": 100000,
;     "Remaining": 100000
;   },
;   "HourlySyncReportRuns": {
;     "Max": 500,
;     "Remaining": 500
;   },
;   "HourlyTimeBasedWorkflow": {
;     "Max": 50,
;     "Remaining": 50
;   },
;   "MassEmail": {
;     "Max": 10,
;     "Remaining": 10
;   },
;   "MonthlyEinsteinDiscoveryStoryCreation": {
;     "Max": 500,
;     "Remaining": 500
;   },
;   "Package2VersionCreates": {
;     "Max": 6,
;     "Remaining": 6
;   },
;   "Package2VersionCreatesWithoutValidation": {
;     "Max": 500,
;     "Remaining": 500
;   },
;   "PermissionSets": {
;     "Max": 1500,
;     "Remaining": 1498,
;     "CreateCustom": {
;       "Max": 1000,
;       "Remaining": 998
;     }
;   },
;   "PrivateConnectOutboundCalloutHourlyLimitMB": {
;     "Max": 0,
;     "Remaining": 0
;   },
;   "PublishCallbackUsageInApex": {
;     "Max": 5242880,
;     "Remaining": 5242880
;   },
;   "SingleEmail": {
;     "Max": 15,
;     "Remaining": 15
;   },
;   "StreamingApiConcurrentClients": {
;     "Max": 20,
;     "Remaining": 20
;   }
; }

; Sample code for parsing the JSON response...
; Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

Local $iMax = $oJResp.IntOf("ActiveScratchOrgs.Max")
Local $iRemaining = $oJResp.IntOf("ActiveScratchOrgs.Remaining")
Local $iAnalyticsExternalDataSizeMBMax = $oJResp.IntOf("AnalyticsExternalDataSizeMB.Max")
Local $iAnalyticsExternalDataSizeMBRemaining = $oJResp.IntOf("AnalyticsExternalDataSizeMB.Remaining")
Local $iConcurrentAsyncGetReportInstancesMax = $oJResp.IntOf("ConcurrentAsyncGetReportInstances.Max")
Local $iConcurrentAsyncGetReportInstancesRemaining = $oJResp.IntOf("ConcurrentAsyncGetReportInstances.Remaining")
Local $iConcurrentEinsteinDataInsightsStoryCreationMax = $oJResp.IntOf("ConcurrentEinsteinDataInsightsStoryCreation.Max")
Local $iConcurrentEinsteinDataInsightsStoryCreationRemaining = $oJResp.IntOf("ConcurrentEinsteinDataInsightsStoryCreation.Remaining")
Local $iConcurrentEinsteinDiscoveryStoryCreationMax = $oJResp.IntOf("ConcurrentEinsteinDiscoveryStoryCreation.Max")
Local $iConcurrentEinsteinDiscoveryStoryCreationRemaining = $oJResp.IntOf("ConcurrentEinsteinDiscoveryStoryCreation.Remaining")
Local $iConcurrentSyncReportRunsMax = $oJResp.IntOf("ConcurrentSyncReportRuns.Max")
Local $iConcurrentSyncReportRunsRemaining = $oJResp.IntOf("ConcurrentSyncReportRuns.Remaining")
Local $iDailyAnalyticsDataflowJobExecutionsMax = $oJResp.IntOf("DailyAnalyticsDataflowJobExecutions.Max")
Local $iDailyAnalyticsDataflowJobExecutionsRemaining = $oJResp.IntOf("DailyAnalyticsDataflowJobExecutions.Remaining")
Local $iDailyAnalyticsUploadedFilesSizeMBMax = $oJResp.IntOf("DailyAnalyticsUploadedFilesSizeMB.Max")
Local $iDailyAnalyticsUploadedFilesSizeMBRemaining = $oJResp.IntOf("DailyAnalyticsUploadedFilesSizeMB.Remaining")
Local $iDailyApiRequestsMax = $oJResp.IntOf("DailyApiRequests.Max")
Local $iDailyApiRequestsRemaining = $oJResp.IntOf("DailyApiRequests.Remaining")
Local $iDailyAsyncApexExecutionsMax = $oJResp.IntOf("DailyAsyncApexExecutions.Max")
Local $iDailyAsyncApexExecutionsRemaining = $oJResp.IntOf("DailyAsyncApexExecutions.Remaining")
Local $iDailyAsyncApexTestsMax = $oJResp.IntOf("DailyAsyncApexTests.Max")
Local $iDailyAsyncApexTestsRemaining = $oJResp.IntOf("DailyAsyncApexTests.Remaining")
Local $iDailyBulkApiBatchesMax = $oJResp.IntOf("DailyBulkApiBatches.Max")
Local $iDailyBulkApiBatchesRemaining = $oJResp.IntOf("DailyBulkApiBatches.Remaining")
Local $iDailyBulkV2QueryFileStorageMBMax = $oJResp.IntOf("DailyBulkV2QueryFileStorageMB.Max")
Local $iDailyBulkV2QueryFileStorageMBRemaining = $oJResp.IntOf("DailyBulkV2QueryFileStorageMB.Remaining")
Local $iDailyBulkV2QueryJobsMax = $oJResp.IntOf("DailyBulkV2QueryJobs.Max")
Local $iDailyBulkV2QueryJobsRemaining = $oJResp.IntOf("DailyBulkV2QueryJobs.Remaining")
Local $iDailyDeliveredPlatformEventsMax = $oJResp.IntOf("DailyDeliveredPlatformEvents.Max")
Local $iDailyDeliveredPlatformEventsRemaining = $oJResp.IntOf("DailyDeliveredPlatformEvents.Remaining")
Local $iDailyDurableGenericStreamingApiEventsMax = $oJResp.IntOf("DailyDurableGenericStreamingApiEvents.Max")
Local $iDailyDurableGenericStreamingApiEventsRemaining = $oJResp.IntOf("DailyDurableGenericStreamingApiEvents.Remaining")
Local $iDailyDurableStreamingApiEventsMax = $oJResp.IntOf("DailyDurableStreamingApiEvents.Max")
Local $iDailyDurableStreamingApiEventsRemaining = $oJResp.IntOf("DailyDurableStreamingApiEvents.Remaining")
Local $iDailyEinsteinDataInsightsStoryCreationMax = $oJResp.IntOf("DailyEinsteinDataInsightsStoryCreation.Max")
Local $iDailyEinsteinDataInsightsStoryCreationRemaining = $oJResp.IntOf("DailyEinsteinDataInsightsStoryCreation.Remaining")
Local $iDailyEinsteinDiscoveryOptimizationJobRunsMax = $oJResp.IntOf("DailyEinsteinDiscoveryOptimizationJobRuns.Max")
Local $iDailyEinsteinDiscoveryOptimizationJobRunsRemaining = $oJResp.IntOf("DailyEinsteinDiscoveryOptimizationJobRuns.Remaining")
Local $iDailyEinsteinDiscoveryPredictAPICallsMax = $oJResp.IntOf("DailyEinsteinDiscoveryPredictAPICalls.Max")
Local $iDailyEinsteinDiscoveryPredictAPICallsRemaining = $oJResp.IntOf("DailyEinsteinDiscoveryPredictAPICalls.Remaining")
Local $iDailyEinsteinDiscoveryPredictionsByCDCMax = $oJResp.IntOf("DailyEinsteinDiscoveryPredictionsByCDC.Max")
Local $iDailyEinsteinDiscoveryPredictionsByCDCRemaining = $oJResp.IntOf("DailyEinsteinDiscoveryPredictionsByCDC.Remaining")
Local $iDailyEinsteinDiscoveryStoryCreationMax = $oJResp.IntOf("DailyEinsteinDiscoveryStoryCreation.Max")
Local $iDailyEinsteinDiscoveryStoryCreationRemaining = $oJResp.IntOf("DailyEinsteinDiscoveryStoryCreation.Remaining")
Local $iDailyFunctionsApiCallLimitMax = $oJResp.IntOf("DailyFunctionsApiCallLimit.Max")
Local $iDailyFunctionsApiCallLimitRemaining = $oJResp.IntOf("DailyFunctionsApiCallLimit.Remaining")
Local $iDailyGenericStreamingApiEventsMax = $oJResp.IntOf("DailyGenericStreamingApiEvents.Max")
Local $iDailyGenericStreamingApiEventsRemaining = $oJResp.IntOf("DailyGenericStreamingApiEvents.Remaining")
Local $iDailyScratchOrgsMax = $oJResp.IntOf("DailyScratchOrgs.Max")
Local $iDailyScratchOrgsRemaining = $oJResp.IntOf("DailyScratchOrgs.Remaining")
Local $iDailyStandardVolumePlatformEventsMax = $oJResp.IntOf("DailyStandardVolumePlatformEvents.Max")
Local $iDailyStandardVolumePlatformEventsRemaining = $oJResp.IntOf("DailyStandardVolumePlatformEvents.Remaining")
Local $iDailyStreamingApiEventsMax = $oJResp.IntOf("DailyStreamingApiEvents.Max")
Local $iDailyStreamingApiEventsRemaining = $oJResp.IntOf("DailyStreamingApiEvents.Remaining")
Local $iDailyWorkflowEmailsMax = $oJResp.IntOf("DailyWorkflowEmails.Max")
Local $iDailyWorkflowEmailsRemaining = $oJResp.IntOf("DailyWorkflowEmails.Remaining")
Local $iDataStorageMBMax = $oJResp.IntOf("DataStorageMB.Max")
Local $iDataStorageMBRemaining = $oJResp.IntOf("DataStorageMB.Remaining")
Local $iDurableStreamingApiConcurrentClientsMax = $oJResp.IntOf("DurableStreamingApiConcurrentClients.Max")
Local $iDurableStreamingApiConcurrentClientsRemaining = $oJResp.IntOf("DurableStreamingApiConcurrentClients.Remaining")
Local $iFileStorageMBMax = $oJResp.IntOf("FileStorageMB.Max")
Local $iFileStorageMBRemaining = $oJResp.IntOf("FileStorageMB.Remaining")
Local $iHourlyAsyncReportRunsMax = $oJResp.IntOf("HourlyAsyncReportRuns.Max")
Local $iHourlyAsyncReportRunsRemaining = $oJResp.IntOf("HourlyAsyncReportRuns.Remaining")
Local $iHourlyDashboardRefreshesMax = $oJResp.IntOf("HourlyDashboardRefreshes.Max")
Local $iHourlyDashboardRefreshesRemaining = $oJResp.IntOf("HourlyDashboardRefreshes.Remaining")
Local $iHourlyDashboardResultsMax = $oJResp.IntOf("HourlyDashboardResults.Max")
Local $iHourlyDashboardResultsRemaining = $oJResp.IntOf("HourlyDashboardResults.Remaining")
Local $iHourlyDashboardStatusesMax = $oJResp.IntOf("HourlyDashboardStatuses.Max")
Local $iHourlyDashboardStatusesRemaining = $oJResp.IntOf("HourlyDashboardStatuses.Remaining")
Local $iHourlyLongTermIdMappingMax = $oJResp.IntOf("HourlyLongTermIdMapping.Max")
Local $iHourlyLongTermIdMappingRemaining = $oJResp.IntOf("HourlyLongTermIdMapping.Remaining")
Local $iHourlyManagedContentPublicRequestsMax = $oJResp.IntOf("HourlyManagedContentPublicRequests.Max")
Local $iHourlyManagedContentPublicRequestsRemaining = $oJResp.IntOf("HourlyManagedContentPublicRequests.Remaining")
Local $iHourlyODataCalloutMax = $oJResp.IntOf("HourlyODataCallout.Max")
Local $iHourlyODataCalloutRemaining = $oJResp.IntOf("HourlyODataCallout.Remaining")
Local $iHourlyPublishedPlatformEventsMax = $oJResp.IntOf("HourlyPublishedPlatformEvents.Max")
Local $iHourlyPublishedPlatformEventsRemaining = $oJResp.IntOf("HourlyPublishedPlatformEvents.Remaining")
Local $iHourlyPublishedStandardVolumePlatformEventsMax = $oJResp.IntOf("HourlyPublishedStandardVolumePlatformEvents.Max")
Local $iHourlyPublishedStandardVolumePlatformEventsRemaining = $oJResp.IntOf("HourlyPublishedStandardVolumePlatformEvents.Remaining")
Local $iHourlyShortTermIdMappingMax = $oJResp.IntOf("HourlyShortTermIdMapping.Max")
Local $iHourlyShortTermIdMappingRemaining = $oJResp.IntOf("HourlyShortTermIdMapping.Remaining")
Local $iHourlySyncReportRunsMax = $oJResp.IntOf("HourlySyncReportRuns.Max")
Local $iHourlySyncReportRunsRemaining = $oJResp.IntOf("HourlySyncReportRuns.Remaining")
Local $iHourlyTimeBasedWorkflowMax = $oJResp.IntOf("HourlyTimeBasedWorkflow.Max")
Local $iHourlyTimeBasedWorkflowRemaining = $oJResp.IntOf("HourlyTimeBasedWorkflow.Remaining")
Local $iMassEmailMax = $oJResp.IntOf("MassEmail.Max")
Local $iMassEmailRemaining = $oJResp.IntOf("MassEmail.Remaining")
Local $iMonthlyEinsteinDiscoveryStoryCreationMax = $oJResp.IntOf("MonthlyEinsteinDiscoveryStoryCreation.Max")
Local $iMonthlyEinsteinDiscoveryStoryCreationRemaining = $oJResp.IntOf("MonthlyEinsteinDiscoveryStoryCreation.Remaining")
Local $iPackage2VersionCreatesMax = $oJResp.IntOf("Package2VersionCreates.Max")
Local $iPackage2VersionCreatesRemaining = $oJResp.IntOf("Package2VersionCreates.Remaining")
Local $iPackage2VersionCreatesWithoutValidationMax = $oJResp.IntOf("Package2VersionCreatesWithoutValidation.Max")
Local $iPackage2VersionCreatesWithoutValidationRemaining = $oJResp.IntOf("Package2VersionCreatesWithoutValidation.Remaining")
Local $iPermissionSetsMax = $oJResp.IntOf("PermissionSets.Max")
Local $iPermissionSetsRemaining = $oJResp.IntOf("PermissionSets.Remaining")
Local $iCreateCustomMax = $oJResp.IntOf("PermissionSets.CreateCustom.Max")
Local $iCreateCustomRemaining = $oJResp.IntOf("PermissionSets.CreateCustom.Remaining")
Local $iPrivateConnectOutboundCalloutHourlyLimitMBMax = $oJResp.IntOf("PrivateConnectOutboundCalloutHourlyLimitMB.Max")
Local $iPrivateConnectOutboundCalloutHourlyLimitMBRemaining = $oJResp.IntOf("PrivateConnectOutboundCalloutHourlyLimitMB.Remaining")
Local $iPublishCallbackUsageInApexMax = $oJResp.IntOf("PublishCallbackUsageInApex.Max")
Local $iPublishCallbackUsageInApexRemaining = $oJResp.IntOf("PublishCallbackUsageInApex.Remaining")
Local $iSingleEmailMax = $oJResp.IntOf("SingleEmail.Max")
Local $iSingleEmailRemaining = $oJResp.IntOf("SingleEmail.Remaining")
Local $iStreamingApiConcurrentClientsMax = $oJResp.IntOf("StreamingApiConcurrentClients.Max")
Local $iStreamingApiConcurrentClientsRemaining = $oJResp.IntOf("StreamingApiConcurrentClients.Remaining")

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
https://domain.com/services/data/v{{version}}/limits

Postman Collection Item JSON

{
  "name": "Limits",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "// Visualizer that renders a Chart.js graph with the Salesforce API limits consumption",
          "const template = `<script src=\"https://cdn.jsdelivr.net/npm/chart.js@3.5.1/dist/chart.min.js\"></script>",
          "<canvas id=\"myChart\" width=\"400\" height=\"800\"></canvas>",
          "<script>",
          "pm.getData((err, chartData) => {",
          "    const getTooltipFooter = (tooltipItems) => {",
          "        const index = tooltipItems[0].dataIndex;",
          "        return 'Consumed '+ chartData.consumed[index] +' out of '+ chartData.max[index];",
          "    };",
          "",
          "    const ctx = document.getElementById('myChart').getContext('2d');",
          "    const myChart = new Chart(ctx, {",
          "        type: 'bar',",
          "        data: {",
          "            labels: chartData.labels,",
          "            datasets: [",
          "                {",
          "                    label: '% Consumed',",
          "                    data: chartData.consumedPercent,",
          "                    backgroundColor: 'rgba(255, 99, 132, 1)',",
          "                    borderColor: 'rgba(255, 99, 132, 1)',",
          "                    borderWidth: 1",
          "                }",
          "            ]",
          "        },",
          "        options: {",
          "            indexAxis: 'y',",
          "            responsive: true,",
          "            scales: {",
          "                x: {",
          "                    beginAtZero: true,",
          "                    ticks: {",
          "                        callback: (value, index, values) => value + '%'",
          "                    },",
          "                    max: 100",
          "                }",
          "            },",
          "            interaction: {",
          "                intersect: false,",
          "                mode: 'y'",
          "            },",
          "            plugins: {",
          "                tooltip: {",
          "                    callbacks: {",
          "                        footer: getTooltipFooter,",
          "                        label: (tooltipItems) => tooltipItems.raw + '%'",
          "                    }",
          "                },",
          "                title: {",
          "                    display: true,",
          "                    text: 'API Limits Consumption'",
          "                },",
          "                legend: {",
          "                    display: false",
          "                }",
          "            }",
          "        }",
          "    });",
          "});",
          "</script>`;",
          "",
          "// Format API response into chart data",
          "const responseJson = pm.response.json();",
          "const chartData = {",
          "    labels: [],",
          "    consumed: [],",
          "    consumedPercent: [],",
          "    max: []",
          "};",
          "Object.keys(responseJson).forEach((limitName) => {",
          "    const { Max, Remaining } = responseJson[limitName];",
          "    const consumed = Max - Remaining;",
          "    let percent = 0;",
          "    if (Max !== 0) {",
          "        percent = (consumed / Max) * 100;",
          "        percent = percent",
          "            .toString()",
          "            .match(/^-?\\d+(?:\\.\\d{0,2})?/)[0];",
          "    }",
          "    chartData.labels.push(limitName);",
          "    chartData.consumed.push(consumed);",
          "    chartData.consumedPercent.push(percent);",
          "    chartData.max.push(Max);",
          "});",
          "// Render vizualizer",
          "pm.visualizer.set(template, chartData);"
        ],
        "type": "text/javascript",
        "packages": {}
      }
    }
  ],
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{_endpoint}}/services/data/v{{version}}/limits",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "data",
        "v{{version}}",
        "limits"
      ]
    },
    "description": "Lists information about limits in your org. For each limit, this resource returns the maximum allocation and the remaining allocation based on usage. This resource is available in REST API version 29.0 and later for API users with the View Setup and Configuration permission"
  },
  "response": [
    {
      "name": "Limits",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{_endpoint}}/services/data/v{{version}}/limits",
          "host": [
            "{{_endpoint}}"
          ],
          "path": [
            "services",
            "data",
            "v{{version}}",
            "limits"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Tue, 26 Sep 2023 13:19:11 GMT"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=63072000; includeSubDomains"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "X-Robots-Tag",
          "value": "none"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache,must-revalidate,max-age=0,no-store,private"
        },
        {
          "key": "Sforce-Limit-Info",
          "value": "api-usage=1/15000"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=UTF-8"
        },
        {
          "key": "Vary",
          "value": "Accept-Encoding"
        },
        {
          "key": "Content-Encoding",
          "value": "gzip"
        },
        {
          "key": "Transfer-Encoding",
          "value": "chunked"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"ActiveScratchOrgs\": {\n        \"Max\": 3,\n        \"Remaining\": 3\n    },\n    \"AnalyticsExternalDataSizeMB\": {\n        \"Max\": 40960,\n        \"Remaining\": 40960\n    },\n    \"ConcurrentAsyncGetReportInstances\": {\n        \"Max\": 200,\n        \"Remaining\": 200\n    },\n    \"ConcurrentEinsteinDataInsightsStoryCreation\": {\n        \"Max\": 5,\n        \"Remaining\": 5\n    },\n    \"ConcurrentEinsteinDiscoveryStoryCreation\": {\n        \"Max\": 2,\n        \"Remaining\": 2\n    },\n    \"ConcurrentSyncReportRuns\": {\n        \"Max\": 20,\n        \"Remaining\": 20\n    },\n    \"DailyAnalyticsDataflowJobExecutions\": {\n        \"Max\": 60,\n        \"Remaining\": 60\n    },\n    \"DailyAnalyticsUploadedFilesSizeMB\": {\n        \"Max\": 51200,\n        \"Remaining\": 51200\n    },\n    \"DailyApiRequests\": {\n        \"Max\": 15000,\n        \"Remaining\": 14999\n    },\n    \"DailyAsyncApexExecutions\": {\n        \"Max\": 250000,\n        \"Remaining\": 250000\n    },\n    \"DailyAsyncApexTests\": {\n        \"Max\": 540,\n        \"Remaining\": 540\n    },\n    \"DailyBulkApiBatches\": {\n        \"Max\": 15000,\n        \"Remaining\": 15000\n    },\n    \"DailyBulkV2QueryFileStorageMB\": {\n        \"Max\": 976562,\n        \"Remaining\": 976562\n    },\n    \"DailyBulkV2QueryJobs\": {\n        \"Max\": 10000,\n        \"Remaining\": 10000\n    },\n    \"DailyDeliveredPlatformEvents\": {\n        \"Max\": 10000,\n        \"Remaining\": 10000\n    },\n    \"DailyDurableGenericStreamingApiEvents\": {\n        \"Max\": 10000,\n        \"Remaining\": 10000\n    },\n    \"DailyDurableStreamingApiEvents\": {\n        \"Max\": 10000,\n        \"Remaining\": 10000\n    },\n    \"DailyEinsteinDataInsightsStoryCreation\": {\n        \"Max\": 1000,\n        \"Remaining\": 1000\n    },\n    \"DailyEinsteinDiscoveryOptimizationJobRuns\": {\n        \"Max\": 25,\n        \"Remaining\": 25\n    },\n    \"DailyEinsteinDiscoveryPredictAPICalls\": {\n        \"Max\": 50000,\n        \"Remaining\": 50000\n    },\n    \"DailyEinsteinDiscoveryPredictionsByCDC\": {\n        \"Max\": 500000,\n        \"Remaining\": 500000\n    },\n    \"DailyEinsteinDiscoveryStoryCreation\": {\n        \"Max\": 100,\n        \"Remaining\": 100\n    },\n    \"DailyFunctionsApiCallLimit\": {\n        \"Max\": 50000,\n        \"Remaining\": 50000\n    },\n    \"DailyGenericStreamingApiEvents\": {\n        \"Max\": 10000,\n        \"Remaining\": 10000\n    },\n    \"DailyScratchOrgs\": {\n        \"Max\": 6,\n        \"Remaining\": 6\n    },\n    \"DailyStandardVolumePlatformEvents\": {\n        \"Max\": 10000,\n        \"Remaining\": 10000\n    },\n    \"DailyStreamingApiEvents\": {\n        \"Max\": 10000,\n        \"Remaining\": 10000\n    },\n    \"DailyWorkflowEmails\": {\n        \"Max\": 405,\n        \"Remaining\": 405\n    },\n    \"DataStorageMB\": {\n        \"Max\": 5,\n        \"Remaining\": 5\n    },\n    \"DurableStreamingApiConcurrentClients\": {\n        \"Max\": 20,\n        \"Remaining\": 20\n    },\n    \"FileStorageMB\": {\n        \"Max\": 20,\n        \"Remaining\": 20\n    },\n    \"HourlyAsyncReportRuns\": {\n        \"Max\": 1200,\n        \"Remaining\": 1200\n    },\n    \"HourlyDashboardRefreshes\": {\n        \"Max\": 200,\n        \"Remaining\": 200\n    },\n    \"HourlyDashboardResults\": {\n        \"Max\": 5000,\n        \"Remaining\": 5000\n    },\n    \"HourlyDashboardStatuses\": {\n        \"Max\": 999999999,\n        \"Remaining\": 999999999\n    },\n    \"HourlyLongTermIdMapping\": {\n        \"Max\": 100000,\n        \"Remaining\": 100000\n    },\n    \"HourlyManagedContentPublicRequests\": {\n        \"Max\": 50000,\n        \"Remaining\": 50000\n    },\n    \"HourlyODataCallout\": {\n        \"Max\": 1000,\n        \"Remaining\": 1000\n    },\n    \"HourlyPublishedPlatformEvents\": {\n        \"Max\": 50000,\n        \"Remaining\": 50000\n    },\n    \"HourlyPublishedStandardVolumePlatformEvents\": {\n        \"Max\": 1000,\n        \"Remaining\": 1000\n    },\n    \"HourlyShortTermIdMapping\": {\n        \"Max\": 100000,\n        \"Remaining\": 100000\n    },\n    \"HourlySyncReportRuns\": {\n        \"Max\": 500,\n        \"Remaining\": 500\n    },\n    \"HourlyTimeBasedWorkflow\": {\n        \"Max\": 50,\n        \"Remaining\": 50\n    },\n    \"MassEmail\": {\n        \"Max\": 10,\n        \"Remaining\": 10\n    },\n    \"MonthlyEinsteinDiscoveryStoryCreation\": {\n        \"Max\": 500,\n        \"Remaining\": 500\n    },\n    \"Package2VersionCreates\": {\n        \"Max\": 6,\n        \"Remaining\": 6\n    },\n    \"Package2VersionCreatesWithoutValidation\": {\n        \"Max\": 500,\n        \"Remaining\": 500\n    },\n    \"PermissionSets\": {\n        \"Max\": 1500,\n        \"Remaining\": 1498,\n        \"CreateCustom\": {\n            \"Max\": 1000,\n            \"Remaining\": 998\n        }\n    },\n    \"PrivateConnectOutboundCalloutHourlyLimitMB\": {\n        \"Max\": 0,\n        \"Remaining\": 0\n    },\n    \"PublishCallbackUsageInApex\": {\n        \"Max\": 5242880,\n        \"Remaining\": 5242880\n    },\n    \"SingleEmail\": {\n        \"Max\": 15,\n        \"Remaining\": 15\n    },\n    \"StreamingApiConcurrentClients\": {\n        \"Max\": 20,\n        \"Remaining\": 20\n    }\n}"
    }
  ]
}