Skip to main content
GET
/
screenings
/
{screeningPublicId}
/
materials
Get materials for a screening
curl --request GET \
  --url https://api.maalbar.dk/screenings/{screeningPublicId}/materials \
  --header 'X-Api-Key: <api-key>'
{
  "data": [
    {
      "publicId": "scm_xxxxxxxxxxxx",
      "label": "<string>",
      "functionalUnitValue": 123,
      "productionWaste": 123,
      "recycleShare": 123,
      "item": {
        "publicId": "itm_xxxxxxxxxxxx",
        "category": {
          "name": "<string>"
        },
        "functionalUnit": "<string>",
        "displayName": "<string>"
      },
      "screeningMaterialMaterials": [
        {
          "publicId": "sma_xxxxxxxxxxxx",
          "locationListItem": {
            "publicId": "lli_xxxxxxxxxxxx",
            "name": "<string>"
          },
          "proportion": 123,
          "recycleShare": 123
        }
      ],
      "screeningMaterialProcesses": [
        {
          "publicId": "spr_xxxxxxxxxxxx",
          "proportion": 123,
          "productionWaste": 123
        }
      ]
    }
  ],
  "pagination": {
    "page": 123,
    "pageSize": 123,
    "totalCount": 123,
    "totalPages": 123
  }
}

Authorizations

X-Api-Key
string
header
required

Response

Successful response

data
object[]
required
pagination
object
required