Skada API
  1. Wastestream
Skada API
  • Core Platform endpoints
    • Test
      • Test
    • Users
      • Get all users
      • Get 1 user
      • Add new user
      • Update 1 user
    • Relations
      • Get all relations
      • Get 1 relation
      • Add new relation
      • Update 1 relation
  • Waste transport
    • Wastestream
      • Get all wastestreams
        GET
      • Get 1 wastestream
        GET
      • Request new wastestream (LMA)
        POST
    • Trips
      • Get all waste trips
      • Get 1 waste trip
      • Add new trip
      • Update 1 wastetrip
  • Manure transport
    • Trips
      • Update 1 manuretrip
      • Get all manuretrips
      • Get 1 manuretrip
      • Add new manuretrip
  • Mobile app control
    • Register mobile app
      POST
    • Activate mobile app
      PATCH
    • App location ping
      POST
    • Send app log message to server
      POST
    • Send command to app
      POST
  • Schemas
    • Address
    • Users
    • Relation
  1. Wastestream

Request new wastestream (LMA)

Developing
Production Environment
https://app.skada.nl/api
Production Environment
https://app.skada.nl/api
POST
https://app.skada.nl/api
/wastestream
This endpoint makes a new wastestream-number request to the official government party "LMA". Once a request is aknowledged, you are not able to change the contents of the request, so make sure the input is right.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
  "WasteStreamRequest": {
    "Producer": {
      "CompanyRegistry": "12345678",
      "Name": "WasteProducer Ltd",
      "Address": {
        "Street": "Example Street 1",
        "PostalCode": "2511 AB",
        "City": "The Hague",
        "Country": "NL"
      },
      "Contact": {
        "Email": "info@wasteproducer.com",
        "Phone": "+31 70 1234567"
      }
    },
    "Processor": {
      "CompanyRegistry": "87654321",
      "Name": "WasteProcessor Ltd",
      "Address": {
        "Street": "Processing Road 10",
        "PostalCode": "1234 CD",
        "City": "Rotterdam",
        "Country": "NL"
      },
      "Contact": {
        "Email": "info@wasteprocessor.com",
        "Phone": "+31 10 9876543"
      }
    },
    "WasteDetails": {
      "WasteCode": "17 01 01",
      "Description": "Construction and demolition waste",
      "Quantity": {
        "Value": 1000,
        "Unit": "KG"
      },
      "Hazardous": false
    },
    "AdditionalInformation": {
      "ProducerPermit": "EnvironmentalPermit-123",
      "TransportRestrictions": "None"
    }
  }
}

Responses

🟢200Success
application/json
Body

Example
{
    "message": "Waste stream request created",
    "data": {
        "WasteStreamRequest": {
            "Producer": {
                "CompanyRegistry": "12345678",
                "Name": "WasteProducer Ltd",
                "Address": {
                    "Street": "Example Street 1",
                    "PostalCode": "2511 AB",
                    "City": "The Hague",
                    "Country": "NL"
                },
                "Contact": {
                    "Email": "info@wasteproducer.com",
                    "Phone": "+31 70 1234567"
                }
            },
            "Processor": {
                "CompanyRegistry": "87654321",
                "Name": "WasteProcessor Ltd",
                "Address": {
                    "Street": "Processing Road 10",
                    "PostalCode": "1234 CD",
                    "City": "Rotterdam",
                    "Country": "NL"
                },
                "Contact": {
                    "Email": "info@wasteprocessor.com",
                    "Phone": "+31 10 9876543"
                }
            },
            "WasteDetails": {
                "WasteCode": "17 01 01",
                "Description": "Construction and demolition waste",
                "Quantity": {
                    "Value": 1000,
                    "Unit": "KG"
                },
                "Hazardous": false
            },
            "AdditionalInformation": {
                "ProducerPermit": "EnvironmentalPermit-123",
                "TransportRestrictions": "None"
            }
        }
    }
}
🟠400Missing required fields
Previous
Get 1 wastestream
Next
Get all waste trips
Built with