Trailers Aging Summary

GET /api/dashboard/summary/aging

Returns yard movements with Trailers by age between the given dates

Headers

  • Specify effective organization_id for Admin and Group Organization Admins. This is a global header for all endpoints only taken into consideration when it makes sense (it won't be used in Auth, for example)

Query parameters

Responses

GET /api/dashboard/summary/aging
curl \
 -X GET https://api-dev.gatego.io:443/api/dashboard/summary/aging \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "content": [
    {
      "age_days": 42,
      "id": 42,
      "trailer": "string"
    }
  ],
  "empty": true,
  "first": true,
  "last": true,
  "number": 42,
  "number_of_elements": 42,
  "pageable": {
    "offset": 42,
    "page_number": 42,
    "page_size": 42,
    "paged": true,
    "sort": {
      "empty": true,
      "sorted": true,
      "unsorted": true
    },
    "unpaged": true
  },
  "size": 42,
  "sort": {
    "empty": true,
    "sorted": true,
    "unsorted": true
  },
  "total_elements": 42,
  "total_pages": 42
}