API order associations order delivery status und transaction status

Hallo

ich hole mir über die API die orders und über associations auch den stateMachineState, bekomme damit den order status und kann diesen auch verändern. Wie kommen ich aber den transaction und delivers status über associations in die abfrage?

Shopware macht es mit 3 Requests:

/api/_action/state-machine/order_transaction/{{uuid}}/state
api/_action/state-machine/order/{{uuid}}/state
api/_action/state-machine/order_delivery/{{uuid}}/state

ja, das sind die _action requests, ich habe mich gefragt, mit welcher association ich die stati von transaction und delivery ich im Call /api/Order abfragen kann.

{
  "filter": [
    {
      "type": "equals",
      "field": "orderNumber",
      "value": "xyz"
    }
  ],
  "associations": {
    "deliveries": {
      "associations": {
        "stateMachineState": {}
      }
    },
    "stateMachineState": {},
    "transactions": {
      "associations": {
        "stateMachineState": {}
      }
    }
  }
}