Skip to content

Battery Listing API

Overview

The Battery Listing API provides battery listing information from Salesforce to external systems via Jitterbit. It retrieves battery records based on the Year parameter or returns all records if no parameter is supplied.


Endpoints

Development

  • Current Year:
    https://CleanEnergyCouncil1325.jitterbit.cc/Development/v1/batteryListing?Year=Current
  • Specific Year (e.g., 2023):
    https://CleanEnergyCouncil1325.jitterbit.cc/Development/v1/batteryListing?Year=2023
  • All Records:
    https://CleanEnergyCouncil1325.jitterbit.cc/Development/v1/batteryListing

Production

  • Current Year:
    https://CleanEnergyCouncil1325.jitterbit.cc/production/1.0/batteryListing?Year=Current
  • Specific Year (e.g., 2023):
    https://CleanEnergyCouncil1325.jitterbit.cc/production/1.0/batteryListing?Year=2023
  • All Records:
    https://CleanEnergyCouncil1325.jitterbit.cc/production/1.0/batteryListing

Parameters

  • Year:
  • Current → Retrieves batteries with valid certificates as of today.
  • Numeric year (e.g., 2023) → Retrieves batteries whose certificate expired in that year.
  • Omitted → Retrieves all batteries.

Jitterbit Operations

  • 4.02 Battery Listing - Extract Current Data
    Pulls batteries with valid certificates and detailed specs.
  • 4.03 Battery Listing - Extract Data by Year in Parms
    Pulls batteries whose certificate expiry date matches the specified year.
  • 4.04 Battery Listing - Extract All
    Fetches all batteries without filters.

Sample Response

{
  "Batteries": [
    {
      "BatteryNumber": "B-1285",
      "Details": {
        "Id": "a1g2t000000BLTyAAO",
        "Model_Number__c": "IS-BATT-10000-S0",
        "Series__c": "IS-BATT",
        "NominalBatteryCapacity": "10",
        "UsableCapacity": 10,
        "DepthOfDischarge": 100,
        "MaxOperatingTemperature": 55,
        "MinOperatingTemp": "-20",
        "OutdoorUsage": true,
        "DCVoltage": 450,
        "BatteryChemistry": "LiFePO4",
        "RatedDCPower": 5
      },
      "Certificate": {
        "Details": {
          "SalesforceBatteryCertID": "BAT-490",
          "CompliancePathway": "Method 3 Mandatory Requirements",
          "CECApprovedDate": "2023-10-19",
          "CECExpiredDate": "2026-10-19",
          "CECApproved": true,
          "BrandName": "iStore",
          "ImporterOrResponsibleSupplier": "ISTORE (QLD) PTY LTD",
          "EquipmentCategory": "Pre-assembled Battery System (BS)",
          "WarrantyAvailableFrom": "https://istore.net.au/downloads"
        }
      }
    }
  ]
}