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

Get all wastestreams

Developing
Production Environment
https://app.skada.nl/api
Production Environment
https://app.skada.nl/api
GET
https://app.skada.nl/api
/wastestream

Request

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

Header Params

Responses

🟢200OK
application/json
Body

Example
{
    "wastestreams": [
        {
            "id": 1,
            "wastestreamnumber": "AS736627181"
        },
        {
            "id": 2,
            "wastestreamnumber": "AS736627182"
        },
        {
            "id": 3,
            "wastestreamnumber": "AS736627183"
        },
        {
            "id": 4,
            "wastestreamnumber": "AS736627184"
        }
    ]
}
Previous
Update 1 relation
Next
Get 1 wastestream
Built with