PUT
/
v1
/
companies
/
{company_id}
/
reports
/
{report_id}
curl --request PUT \
  --url https://nueborder.com/api/v1/v1/companies/{company_id}/reports/{report_id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "additional_information": "Goods'\'' additional information",
  "companyID": 123,
  "createdAt": "<string>",
  "declarant_actor_address_city": "Declarant city",
  "declarant_actor_address_country": "BE",
  "declarant_identification_number": "BE1457893",
  "declarant_name": "Declarant CBAM",
  "importer_address_city": "Declarant city",
  "importer_address_country": "BE",
  "importer_identification_number": "GR293847584930295",
  "importer_name": "Declarant CBAM",
  "internalReportID": 123,
  "organizationID": 123,
  "reporting_period": "Q3",
  "representative_address_city": "Declarant city",
  "representative_address_country": "BE",
  "representative_identification_number": "IT293847584930295",
  "representative_name": "Representative CBAM",
  "role": "01",
  "signatures": {
    "global_data_confirmation": true,
    "other_applicable_reporting_methodology": true,
    "position_of_person_sending": "Position of person signing",
    "signature": "Signature (Full Name)",
    "signature_place": "Place of signature",
    "use_of_data_confirmation": true
  },
  "submission_date": "2023-08-08T08:21:14Z",
  "updatedAt": "<string>",
  "updatedBy": "<string>",
  "version": "<string>",
  "year": 2024
}'
{
  "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

Company ID associated with the general report

report_id
string
required

Report ID associated with the general report

Body

application/json

General report information payload

Summary of Struct

Response

200
application/json

General report information successfully updated" example({"status": "success", "message": "Updated successfully", "data": {...}})

A standard successful API response.