PUT
/
v1
/
companies
/
{company_id}
/
reports
/
{report_id}
/
goods
/
params
curl --request PUT \
  --url https://nueborder.com/api/v1/v1/companies/{company_id}/reports/{report_id}/goods/params \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "additional_information": "<string>",
  "companyID": 123,
  "createdAt": "<string>",
  "description": "Tonnes scrap used for producing 1 t of the product (total scrap including post-consumer scrap)",
  "internalReportID": 123,
  "item_number": "1",
  "organizationID": 123,
  "parameter_id": "QPD21",
  "parameter_name": "Aluminium scrap usage",
  "parameter_value": "9",
  "parameter_value_type": "NUMERIC",
  "sequence_number": 1,
  "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 imported goods parameters

report_id
string
required

Unique identifier for the report associated with the imported goods parameters

Body

application/json

Payload containing imported goods parameters

Summary of Struct

Response

200
application/json

Successfully updated or inserted imported goods parameters

A standard successful API response.