Salesforce Net Zero Cloud · Example Payload

Salesforce Net Zero Cloud Create Carbon Emission Example

Example request and response for creating a Scope 1 carbon emission record in Salesforce Net Zero Cloud

Carbon AccountingCarbon EmissionsClimateEnvironmentalESGNet ZeroSustainability

Salesforce Net Zero Cloud Create Carbon Emission Example is an example object payload from Salesforce Net Zero Cloud, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionoperationmethodpathrequestresponse

Example Payload

Raw ↑
{
  "title": "Create Carbon Emission Record Example",
  "description": "Example request and response for creating a Scope 1 carbon emission record in Salesforce Net Zero Cloud",
  "operation": "createCarbonEmission",
  "method": "POST",
  "path": "/sobjects/CarbonEmission",
  "request": {
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "Scope": 1,
      "EmissionSource": "Natural Gas Combustion",
      "QuantityMtCO2e": 125.7,
      "ReportingYear": 2023,
      "ReportingPeriodStartDate": "2023-01-01",
      "ReportingPeriodEndDate": "2023-12-31",
      "CalculationMethod": "ActivityBased",
      "Description": "Scope 1 emissions from natural gas used for building heating at headquarters"
    }
  },
  "response": {
    "statusCode": 201,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "id": "0e8xx000000bCdAAI",
      "success": true,
      "errors": []
    }
  }
}