Skada API
  1. Relations
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
      • Get 1 relation
        GET
      • Add new relation
        POST
      • Update 1 relation
        PATCH
  • Waste transport
    • Wastestream
      • Get all wastestreams
      • Get 1 wastestream
      • Request new wastestream (LMA)
    • 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. Relations

Get 1 relation

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

Request

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

Responses

🟢200
application/json
Body

Example
{
    "id": 3,
    "created_at": "2025-10-04T10:18:36.000000Z",
    "updated_at": "2025-10-04T10:18:36.000000Z",
    "name": "Klant 2 van Skada",
    "kvk": "22222222",
    "btw": "NL222222222B01",
    "brs": "Utrecht",
    "company_id": 1
}
Previous
Get all relations
Next
Add new relation
Built with