PUT
/
v1
/
companies
/
{company_id}
/
reports
/
{report_id}
/
goods
/
emissions
curl --request PUT \
  --url https://nueborder.com/api/v1/v1/companies/{company_id}/reports/{report_id}/goods/emissions \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "applicable_reporting_type_methodology": "TOM02",
  "companyID": 123,
  "createdAt": "<string>",
  "determination_type": "01",
  "direct_emissions_measurement_unit": "EMU1",
  "electricity_source": "SOE03",
  "indirect_emissions_measurement_unit": "EMU1",
  "installation": {
    "city": "Istanbul",
    "establishment_country": "TR",
    "installation_id": "IN03",
    "installation_name": "Augusta Steel INC"
  },
  "installation_operator": {
    "city": "Declarant city",
    "contact_details": [
      {
        "email": "[email protected]",
        "name": "OP04-0001 Contact name",
        "phone": "901234567"
      }
    ],
    "country": "BE",
    "operator_id": "OP04-0001",
    "operator_name": "TR Steel Operator LTD"
  },
  "internalReportID": 123,
  "item_number": "1",
  "organizationID": 123,
  "produced_measure_measurement_unit": "01",
  "remarks_emissions": [
    {
      "additional_information": "Additional information",
      "sequence_number": 0
    }
  ],
  "sequence_number": 1,
  "specific_embedded_emissions": 10,
  "updatedAt": "<string>",
  "updatedBy": "<string>",
  "version": "<string>"
}'
{
  "message": "Operation completed successfully",
  "status": 200
}

Authorizations

Authorization
string
header
required

Provide your Bearer token in the format: Bearer <your_api_key>

Path Parameters

company_id
string
required

Unique identifier for the company associated with the goods emissions

report_id
string
required

Unique identifier for the report associated with the goods emissions

Body

application/json

Goods emissions data

Summary of Struct

Response

200
application/json

Successfully updated or inserted goods emissions data

A standard successful API response.