University of Wisconsin–Madison

Release notes: Sprint 94

Notes

This sprint we removed a couple of extraneous attributes from the ledgerAccounts endpoint. ledger_account_id was always empty, and lastModified was a duplicate of the meta attribute of the same name. If you were using either of these, you can get the correct ID for a ledger account from the higher-level id value, and you can get lastModified from the meta section.

Before:

{
      "attributes": {
        "active": true,
        "lastModified": "2025-12-11T04:11:24",
        "ledger_account_id": "",
        "name": "Bank Account Cash"
      },
      "id": "1000",
      "links": {
        "self": "https://api.wisc.edu/finance/ledgerAccounts/1000"
      },
      "meta": {
        "lastModified": "2025-12-11T04:11:24"
      },
      "type": "ledgerAccounts"
    },

After:

{
      "attributes": {
        "active": true,
        "name": "Bank Account Cash"
      },
      "id": "1000",
      "links": {
        "self": "https://api.wisc.edu/finance/ledgerAccounts/1000"
      },
      "meta": {
        "lastModified": "2025-12-11T04:11:24"
      },
      "type": "ledgerAccounts"
    },

We also cleaned up a few more AWS resources, removing an unused QA environment and cutting down on the number of development databases.

API Changes

  • ledger_account_id removed from ledgerAccounts attributes
  • lastModified removed from ledgerAccounts attributes

Recording

ASP API Sprint 94 Recording