Skip to main content

Diligent ESG API

Download OpenAPI specification:Download

Welcome to the API documentation for Diligent ESG.

Introduction

The Diligent ESG API is the developer interface for Diligent ESG platform.

Diligent ESG currently supports two API types:

  • Activity data API: Send in activity data entry for the supported activities (link to changelog).
  • Reports API: Download reports of your carbon data or quantity data.

This introduction contains information that you should know before you get started. Diligent ESG provides the API, necessary documentation to communicate with the API and endpoints.

Activity Data API

You can use the Activity Data API to send activity entry (usage) data. You can submit activity data for multiple environmental impact areas, including greenhouse gas (GHG) emissions, electricity consumption, fuel usage, water consumption, waste disposal, and employee travel.

For more information about the supported source categories, go to Changelog

Endpoints

Caution: This API interacts with your company's live data. It gives you the power to add important data that your company needs. Carefully consider the consequences of your actions when using this API. If you are not sure, contact the person or group who administers Diligent ESG in your company.

Important: You can only make one request per activity usage data. You cannot bulk send usage data.

Reports API

With the Reports API you can generate and retrieve reports related to greenhouse gas emissions and quantity data. This set of endpoints enables users to generate detailed reports based on activity inputs, aggregation periods, specific reporting methodologies and more.

Currently we support two report types:

  • Greenhouse gas emissions data grouping report, and
  • Quantity data grouping report

Note: Diligent ESG will add further reports over time.

Roles and responsibilities

Diligent ESG provides the API, necessary documentation to communicate with the API, and endpoints so you can gather your data to construct the activity entry data that you will send to the Diligent ESG platform.

While Diligent provides these items and information, Diligent ESG’s engagement does not extend to:

  • Interaction with third-party vendors: If you use third-party vendors for your integration, it is your responsibility to manage and coordinate with them.
  • Direct involvement in your development process: Diligent ESG doesn’t directly engage in writing or maintaining the code between the API integration and your internal system.

When you purchase an API license, it is the responsibility of your technical team, internal or third-party, to successfully implement and provide ongoing maintenance of this API integration.

Getting Started

The Diligent ESG API is built around REST and is built on the OpenAPI 3.0 specification.

To start interacting with the Diligent ESG API, you need to complete the following:

  • Request an API license
  • Request that your site be enabled for API calls
  • Login to Diligent ESG
  • Copy your company’s ID to call API endpoints
  • Create an API key
  • Format and structure your activity usage data

Licensing

The Diligent ESG API is available to clients upon request. To enquire about Diligent ESG API, contact your Customer Success Manager (CSM).

Request Diligent ESG site enablement

For each company, you must request that the API module is enabled. You can then create an API key that allows you to make API requests. To request that the module is enabled, contact your Customer Success Manager (CSM).

API User

We recommend you create a dedicated user in Diligent ESG that is used solely for making API requests with the required user role rights or permissions. For example, to request data through the List all facilities and assets endpoint, the user must have access to facilities data.

To learn more about users and user role rights, go to the Managing user access section of the Diligent ESG support site.

Creating an API key

The API key programmatically authenticates your identity to Diligent ESG. This allows applications to perform specific actions defined by the read, write, or admin permissions granted.

If you need an API key for yourself, go to Creating an API key for your profile.

If you are a regular user, request the administrator on the system to create an API key using Creating an API key for another user.

An API key is created which you can copy to use to authenticate your identity to Diligent ESG.

Important: You can only view the API key once after creation so immediately copy it to a safe location. Otherwise, you must delete the key and recreate it.

Authentication

All requests require authentication. To authenticate, use Diligent ESG to create a token (API key) for your account. The token (API key) is a string that authenticates you and allows you to securely access the Diligent ESG API.

After you have created your token, you can provide it in the header of your request:

Authorization: Bearer <TOKEN>

Important: If you do not authenticate yourself, the API fails. The API responds to authentication failures with a 401 "Bad credentials" status.

Copy the Company ID to call API endpoints

You need the company's ID to call the API endpoints. Use this ID to get and send the data that you need for your business.

For further information about copying the company's ID, go to Copying your company’s ID.

API region

The Diligent ESG service is provided from a single region to ensure secure and compliant data storage. All requests must use the following URL for access:

Important: All API requests must be made over HTTPS. Calls over HTTP respond with the 301 "Moved Permanently" status.

Formatting and structuring your activity usage data

You need to format and structure your data to match the Diligent ESG API schema. You can use the help outlined in each endpoints.

Note: If you require further assistance matching the Diligent ESG schema, you can contact support@accuvio.com.

Sending requests

After you have completed the authentication process, you can start sending requests.

Rate limitations

The API safeguards against bursts of usage to help maximize its stability. If you make too many requests, the API responds with a 429 "Too many requests" status.

Unique identifiers

When you create a record in Diligent ESG, a unique quick reference is assigned to it. This quick reference is unique throughout the lifecycle of the item.

Pagination

As responses often contain many items, you can enable pagination to improve response time, reduce network traffic, and make the data set in the response easier to handle. Use the page_size and page ;parameters to configure pagination in the requests you send.

Additionally, responses include the links parameter, which provides the following URI's first_page, next_page, prev_page and last_page (or null values for next_page and prev_page if all the items are on one page) so you can use them for subsequent requests.

Parameter Type Description
page_size Integer The number of records on a page. Possible value range is between 1 and 100. The default value is 100.
page Integer The page number of the result set. Possible value range is between 1 and 2147483647. The default value is 1.
first_page URI The link to the first page.
next_page URI The link to the next page.
prev_page URI The link to the previous page.
last_page URI The link to the last page.

Filters

Use the Filters parameter to define the filter conditions. You can add multiple filters to a request. All GET queries support filtering and follow these two rules:

  • Text is not case-sensitive: Text must be an exact match but does not have to exactly match the case, upper or lower.
  • Multiple filters apply AND connection: If you combine multiple filters, then the API uses an AND connection between them. Diligent ESG only shows results when both filters are matched.

Responses and errors

The Diligent ESG API uses standard HTTP response codes to indicate the success or failure of a request. The following table lists some common responses that are returned when sending requests.

Code Status Description
200 OK The request succeeded.
400 Bad Request The request could not be understood by the server. The response body contains more details.
401 Unauthorized The request requires authentication or the supplied authorization credentials have been refused.
403 Forbidden Access to the resource is forbidden.
409 Conflict Module is not active.
429 Too Many Requests Request rate limit has been reached. You can try again in a few seconds using exponential backoff.
5xx Server error Server failed to fulfil a valid request. You can try again in a few seconds using exponential backoff.

Timezones

Diligent ESG operates exclusively in the Coordinated Universal Time (UTC) time zone. All dates and times recorded within the system are stored and displayed in UTC by default. All data that you upload using the API will use UTC rather than your local time zone for dates and times.

Versioning

All API endpoints use a version number in the path. As can be seen in the examples, /v1/ specifies version 1 of the API.

Over time, the API will evolve. New API versions will be introduced and existing versions may be updated.

Some API updates are considered a breaking change, requiring a new version of the API to be introduced. An example of a breaking change is fields being changed or removed. By introducing a new version, API consumers can safely continue to use prior API versions.

The other type of API update is a non-breaking change. You should expect non-breaking change updates to existing API versions. An example of a non-breaking change is adding a field to a response object. Non-breaking changes are additive. While they do change the response body, they should not impact the API consumer.

For further information about the current version and the recent version updates, go to Change Log.

Activity data entry – use case

You want to send 20kWh of used electricity (Scope 2) for Building A for a given period to Accuvio. To do this, you need to get the Activity ID and any other data from Diligent ESG to construct the payload and send it using the API.

API Use case

  1. Use the following query to identify your company’s assets: GET/v1/«company_id»/assets
    Note: Replace with your company’s ID. For further information, go to Copy the Company ID to call API endpoints

  2. Use the following query to filter your company’s assets and receive your company’s activity IDs: GET/v1/«company_id>/activities

    Note: You require activity IDs to push activity data to the system.

  3. Use the following query to request your company’s reference type IDs: GET/v1/«company_id»/common/reference_types

  4. Use the following query to request your company’s meter reading type IDs: GET/v1/«company_id»/common/meter_reading_types

  5. Use the following query to request your company’s unit IDs: GET/v1/«company_id»/common/units

  6. Use the following query to request your company’s currency IDs: GET/v1/«company_id»/common/currencies

  7. Use the following query to request your company’s supplier IDs: GET/v1/«company_id»/common/suppliers

  8. Use the following query to push your company’s activity data to the system: POST/v1/«company_id»/electricity/activity_data Note: Include the activity IDs that you received in Step 2 in the Request body.

Changelog

2025-03-28 - Additional activity data support & Initial reports API version

Important: We have updated the request URL for Diligent ESG:

All requests to the old URL will be automatically redirected to the new one. However, no new integrations should be built using the deprecated URL. Please update your systems accordingly to ensure long-term compatibility.

Activity data: Air travel with airport codes

Scope Source category Calculation method Endpoint
Scope 3 Business Travel - Air Air travel with airport codes Employee travel activity
Scope 3 Employee Commuting - Air Air travel with airport codes Employee travel activity

Reports API

Report type Report sub type Endpoint
Greenhouse Gas Emissions GHG Data Grouping Report GHG Data Grouping Report
Usage and Cost Quantity Data Grouping Report Quantity Data Grouping Report

2024-09-30 - Additional activity data support

Important: The Add data to a business travel activity endpoint has been changed to Add data to employee travel activity. The endpoint URL changed from /v1/{company_id}/business_travel/activity_data to /v1/{company_id}/employee_travel/activity_data. Additionally, the schemas have been updated, with adjustments made to the payload structure to align with the updated naming conventions.

Scope Source category Calculation method Endpoint
Scope 3 Business Travel - Hotel Hotel Room Per Night Employee travel activity
Scope 3 Business Travel - Intermodal Emissions Quantity Employee travel activity
Scope 3 Employee Commuting - Air Passenger Distance Employee travel activity
Scope 3 Employee Commuting - Air Mobile Fuel Use Employee travel activity
Scope 3 Employee Commuting - Intermodal Emissions Quantity Employee travel activity
Scope 3 Employee Commuting - Rail Passenger Distance Employee travel activity
Scope 3 Employee Commuting - Road Fuel Use and Vehicle Distance Employee travel activity
Scope 3 Employee Commuting - Road Mobile Fuel Use Employee travel activity
Scope 3 Employee Commuting - Road Passenger Distance Employee travel activity
Scope 3 Employee Commuting - Road Vehicle Distance Employee travel activity
Scope 3 Employee Commuting - Water Mobile Fuel Use Employee travel activity
Scope 3 Employee Commuting - Water Passenger Distance Employee travel activity
Scope 3 Purchased Goods and Services Emissions Quantity GHG activity data
Scope 3 Purchased Goods and Services Quantity of Goods Purchased GHG activity data

2024-03-10 - Additional activity data support

Scope Source category Calculation method Endpoint
Scope 1 Mobile Combustion - Air Emissions Quantity Fuel activity
Scope 1 Mobile Combustion - Rail Emissions Quantity Fuel activity
Scope 1 Mobile Combustion - Road Emissions Quantity Fuel activity
Scope 1 Mobile Combustion - Road Freight Vehicle Distance Fuel activity
Scope 1 Mobile Combustion - Road Fuel Use and Vehicle Distance Fuel activity
Scope 1 Mobile Combustion - Road Vehicle Distance Fuel activity
Scope 1 Mobile Combustion - Water Emissions Quantity Fuel activity
Scope 3 Business Travel - Air Mobile Fuel Use Employee travel activity
Scope 3 Business Travel - Air Passenger Distance Employee travel activity
Scope 3 Business Travel - Rail Passenger Distance Employee travel activity
Scope 3 Business Travel - Road Fuel Use and Vehicle Distance Employee travel activity
Scope 3 Business Travel - Road Mobile Fuel Use Employee travel activity
Scope 3 Business Travel - Road Passenger Distance Employee travel activity
Scope 3 Business Travel - Road Vehicle Distance Employee travel activity
Scope 3 Business Travel - Water Mobile Fuel Use Employee travel activity
Scope 3 Business Travel - Water Passenger Distance Employee travel activity
Sustainability (CSR) Environmental Waste Fractions Waste activity
Sustainability (CSR) Environmental Water Consumption Water activity
Sustainability (CSR) Environmental Water Discharge Water activity

2024-01-16 - Additional activity data support

Scope Source category Calculation method Endpoint
Scope 1 Mobile Combustion - Air Mobile Fuel Use Fuel activity
Scope 1 Mobile Combustion - Rail Mobile Fuel Use Fuel activity
Scope 1 Mobile Combustion - Road Mobile Fuel Use Fuel activity
Scope 1 Mobile Combustion - Water Mobile Fuel Use Fuel activity
Scope 1 Stationary Combustion Stationary Fuel Use Fuel activity

2023-12-17 - Initial version

Scope Source category Calculation method Endpoint
Scope 1 Fugitive Emissions Refrigerants GHG activity data
Scope 2 Purchased and Used Electricity Electricity Use Electricity activity
Scope 3 Waste Waste Disposal Waste activity
Scope 3 Water Water Supply Treatments Water activity

Activities

List activities

Collects the list of activities.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Content type
application/json
{}

Activity Data

Add data to an electricity activity

Submit purchased and used electricity activity data.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Request Body schema: application/json
activity_data_schema
required
string
Default: "electricity_use"
activity_id
string <uuid>

Related activity ID

required
object (CommonDataDTO)

Common fields of Activity Data

required
object (ElectricityUseMetaDataDTO)

Responses

Request samples

Content type
application/json
{
  • "activity_data_schema": "electricity_use",
  • "activity_id": "98dae057-958f-4b2f-9ed4-41f109afdc3f",
  • "common": {
    },
  • "activity_meta_data": {
    }
}

Response samples

Content type
application/json
{
  • "activity_data_id": "4f47f8da-f793-4217-b06c-3947f25b3c58"
}

Add data to employee travel activity

Submit business travel and employee commuting related activity data.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Request Body schema: application/json
activity_data_schema
required
string
Default: "business_travel_road_mobile_fuel_use"
activity_id
string <uuid>

Related activity ID

required
object (CommonDataDTO)

Common fields of Activity Data

required
object (MobileFuelUseMetadataDTO)

Mobile fuel use specific data type

Responses

Request samples

Content type
application/json
Example
{
  • "activity_data_schema": "business_travel_road_mobile_fuel_use",
  • "activity_id": "98dae057-958f-4b2f-9ed4-41f109afdc3f",
  • "common": {
    },
  • "activity_meta_data": {
    }
}

Response samples

Content type
application/json
{
  • "activity_data_id": "4f47f8da-f793-4217-b06c-3947f25b3c58"
}

Add data to a GHG emission-related activity

Submit greenhouse gas emission related activity data

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Request Body schema: application/json
activity_data_schema
required
string
Default: "fugitive_emissions_refrigeration"
activity_id
string <uuid>

Related activity ID

required
object (CommonDataDTO)

Common fields of Activity Data

required
object (GenericMetaDataDTO)

Responses

Request samples

Content type
application/json
Example
{
  • "activity_data_schema": "fugitive_emissions_refrigeration",
  • "activity_id": "98dae057-958f-4b2f-9ed4-41f109afdc3f",
  • "common": {
    },
  • "activity_meta_data": {
    }
}

Response samples

Content type
application/json
{
  • "activity_data_id": "4f47f8da-f793-4217-b06c-3947f25b3c58"
}

Add data to a fuel-related activity

Submit fuel-related activity data.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Request Body schema: application/json
activity_data_schema
required
string
Default: "stationary_fuel_use"
activity_id
string <uuid>

Related activity ID

required
object (CommonDataDTO)

Common fields of Activity Data

required
object (StationaryFuelUseMetadataDTO)

Stationary fuel specific activity data

Responses

Request samples

Content type
application/json
Example
{
  • "activity_data_schema": "stationary_fuel_use",
  • "activity_id": "98dae057-958f-4b2f-9ed4-41f109afdc3f",
  • "common": {
    },
  • "activity_meta_data": {
    }
}

Response samples

Content type
application/json
{
  • "activity_data_id": "4f47f8da-f793-4217-b06c-3947f25b3c58"
}

Add data to a waste-related activity

Submit waste-related activity data.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Request Body schema: application/json
activity_data_schema
required
string
Default: "waste_disposal"
activity_id
string <uuid>

Related activity ID

required
object (CommonDataDTO)

Common fields of Activity Data

required
object (GenericMetaDataDTO)

Responses

Request samples

Content type
application/json
Example
{
  • "activity_data_schema": "waste_disposal",
  • "activity_id": "98dae057-958f-4b2f-9ed4-41f109afdc3f",
  • "common": {
    },
  • "activity_meta_data": {
    }
}

Response samples

Content type
application/json
{
  • "activity_data_id": "4f47f8da-f793-4217-b06c-3947f25b3c58"
}

Add data to a water-related activity

Submit water-related activity data.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Request Body schema: application/json
activity_data_schema
required
string
Default: "water_supply_treatment"
activity_id
string <uuid>

Related activity ID

required
object (CommonDataDTO)

Common fields of Activity Data

required
object (WaterMetadataDTO)

Water Supply and Treatment specific activity data

Responses

Request samples

Content type
application/json
Example
{
  • "activity_data_schema": "water_supply_treatment",
  • "activity_id": "98dae057-958f-4b2f-9ed4-41f109afdc3f",
  • "common": {
    },
  • "activity_meta_data": {
    }
}

Response samples

Content type
application/json
{
  • "activity_data_id": "4f47f8da-f793-4217-b06c-3947f25b3c58"
}

Activity Metadata

List calculation methods

Collects the list of calculation methods for a specific activity type.

To get the source category ID use the source categories endpoint, and to get the activity type ID use the activities endpoint.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

source_category_id
required
string <uuid>

The source category ID

activity_type_id
required
string <uuid>

The activity type ID

query Parameters
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List activity inputs

Fetches input ID for an activity.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

activity_id
required
string <uuid>

Activity Id path parameter

query Parameters
object

A combination of country_id, start_date, end_date and calculation_method_id are required to filter by those query params

object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List activity types relating to the source category

Collects the activity types under a source category.

To get the source category ID use the source categories endpoint.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

source_category_id
required
string <uuid>

The source category ID

query Parameters
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

List source categories

Collect the list of source categories for your company.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Content type
application/json

List emission factor sources for calculation methods

Collects the emission factor sources for a specific calculation method.

To get the source category ID use the source categories endpoint, to get the activity type ID use the activities endpoint and to get the calculation method ID use the calculation methods endpoint.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

source_category_id
required
string <uuid>

The source category ID

activity_type_id
required
string <uuid>

The activity type ID

calculation_method_id
required
string <uuid>

The calculation method ID

query Parameters
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Assets

List assets

Collects the list of assets, such as buildings and their details.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Content type
application/json
{}

Common Data Reference

List activity scopes

Collects the list of scopes.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List airports

Collects the list of airports with details.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Content type
application/json
{}

List calorific values

Collects the list of calorific value basis.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List countries

Collects the list of supported countries.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

List currencies

Collects the list of available currencies.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

List metering reading types

Collects the list of meter reading types.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List supported organization nodes

Collects your organization's hierarchy nodes.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Content type
{}

List reference types

Collects the list of reference types.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List scope 2 reporting methodologies

Fetches Scope 2 reporting methods.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List suppliers

Collects the list of company suppliers.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

List travel class types

Collects the list of available travel class types.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List units of measure

Collects the list of measurement units.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Company details

Fetch your company's details

Collects your company information.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Content type
application/json
{
  • "company_id": "b2e6a1c3-1a5e-44ae-a8fd-81f76fd715cf",
  • "name": "string",
  • "full_name": "string",
  • "domain": "string"
}

Report

Initiate GHG report generation

Initiate the generation of Greenhouse Gas Emissions type reports.

start_date and end_date max range time period is one month

Quantities of activity data will be converted to selected unit_id. Only entries that could be converted are displayed

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Request Body schema: application/json
report_type_schema
required
string
Default: "ghg_data_grouping_report"
required
object (ReportsCommonDataDTO)

Common fields of Report Generation requests

refine_report_data
boolean or null

Post process the report data to return a more concise report with essential data

required
object (GHGDataGroupingReportMetaDataDTO)

Responses

Request samples

Content type
application/json
{
  • "report_type_schema": "ghg_data_grouping_report",
  • "common": {
    },
  • "refine_report_data": false,
  • "report_meta_data": {
    }
}

Response samples

Content type
application/json
{
  • "report_id": "5ed7905a-4735-4cf7-b1ab-521e066fb971"
}

Initiate quantity report generation

Initiate the generation of Usage and Cost type reports.

start_date and end_date max range time period is one month

Quantities of activity data will be converted to selected unit_id. Only entries that could be converted are displayed.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Request Body schema: application/json
report_type_schema
required
string
Default: "quantity_data_grouping_report"
required
object (ReportsCommonDataDTO)

Common fields of Report Generation requests

refine_report_data
boolean or null

Post process the report data to return a more concise report with essential data

required
object (QuantityDataGroupingReportMetaDataDTO)

Responses

Request samples

Content type
application/json
{
  • "report_type_schema": "quantity_data_grouping_report",
  • "common": {
    },
  • "refine_report_data": false,
  • "report_meta_data": {
    }
}

Response samples

Content type
application/json
{
  • "report_id": "5ed7905a-4735-4cf7-b1ab-521e066fb971"
}

List activity inputs for a report

Collects the list of activity inputs for a report.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

activity_input_type_id
required
string <uuid>

Activity Input Type Id path parameter got from /v1/{company_id}/reports/report_types/{report_type_id}/activity_input_types

report_type_id
required
string <uuid>

Report Id path parameter got from /v1/{company_id}/report

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List activity input types for a report

Collects the list of activity input types for a report type.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

report_type_id
required
string <uuid>

Report Id path parameter got from /v1/{company_id}/reports

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List activity types for a report

Fetches activity types under a source category.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

source_category_id
required
string <uuid>

Source Category Id path parameter got from v1/{company_id}/reports/report_types/{report_type_id}/source_categories

report_type_id
required
string <uuid>

Report Id path parameter got from /v1/{company_id}/reports

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

List aggregation time periods

Collects the list of available aggregation time periods.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters
report_sub_type_id
required
string <uuid>

The report sub type id from /v1/{company_id}/reports/report_types/{report_type_id}/sub_types

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List source categories for a report

Collects the list of source categories for a report.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

report_type_id
required
string <uuid>

Report Id path parameter got from /v1/{company_id}/reports

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Fetch report generation status

Collects the report generation status.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

report_id
required
string <uuid>

Report ID path parameter

header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Content type
application/json
{
  • "collection_status": "string"
}

List report types

Collects the list of available report types. The retrieved report type ID can be used for the activity input types and activity inputs for reports.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

List report sub types

Collects the list of report subtypes.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

report_type_id
required
string <uuid>

Report type ID path parameter see {company_id}/reports/report_types

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Fetch report

Collects the generated report using the report ID, which is obtained from the response of initiating the report generation API calls.

If report is not ready yet, the response will be a 202 accepted and the response will contain the report_id.

For more details, see MDN Docs.

If the report is ready, the response will be a 307 Temporary Redirect containing the S3 pre-signed URL in the Location header to download the report.

For more details, see MDN Docs.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

report_id
required
string <uuid>

Report ID path parameter

header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Content type
application/json
{
  • "report_id": "5ed7905a-4735-4cf7-b1ab-521e066fb971"
}

Sites

List sites

Collects a list of sites associated with your company.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Content type
application/json
{}

Waste

List waste disposal locations

Collects the list of waste disposal locations.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List waste disposal methods

Collects the list of available waste disposal methods.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

List waste fractions

Collects the list of waste fractions.

Authorizations:
Bearer
path Parameters
company_id
required
string [ 1 .. 100 ] characters

Company ID path parameter

query Parameters
object
object
header Parameters
correlation-id
string <uuid>

Correlation ID of the request

Responses

Response samples

Content type
application/json
{}