---
title: "Orders By Auction Id"
method: GET
path: "/api/auctions/{auctionId}/orders"
tags: ["Auction Orders"]
---

# Orders By Auction Id

`GET /api/auctions/{auctionId}/orders`

Returns a list of orders for portfolios available to the logged in user, filtered by the given auction id.

### Response field descriptions
- **id**: identifier of the order
- **periodCode**: contract period code containing time period - M (month), Q(quarter), or YR (year).
For example, MFEB-25 is month February 2025, Q3-25 is quarter 3 2025, YR-26 is year 2026.
- **areaCode**: bidding zone code
- **side**: **Buy** or **Sell** order
- **portfolio**: portfolio identifier of the portfolio to which the order belongs to
- **price**: price of the order in EUR/MWh
- **volume**: quantity of the order in MW
- **riskIndicator**: **Hedge** or **Speculative** according to Nasdaq terminology. The risk indicator is to be used
to signal if the trade is of a hedging or speculative nature.
This information will be passed on to Nasdaq if the orders are matched in the auction.
- **modifiedBy**: user name of the user who created or modified the order
- **modifiedAt**: order creation or last modification timestamp
- **onBehalfOf**: the same user name as in 'modifiedBy' or the user name of the user the Nord Pool operator acted on behalf of when creating or
modifying the order. For example, in a situation where an auction participant is experiencing technical
difficulties when submitting/modifying orders, Nord Pool Operator may create/update orders acting on behalf of
the auction participant. 
- **active**: status of the order
  - **true** - the order is active
  - **false** - the order is deactivated

## Path parameters

- `auctionId` integer, required

## Response `200`

OK

- PublicAuctionOrderDto[]
  - `id` integer, required
  - `periodCode` string, nullable, required
  - `areaCode` string, nullable, required
  - `side` 'Buy' | 'Sell', required
  - `portfolio` string, nullable, required
  - `price` number, double, required
  - `volume` integer, required
  - `riskIndicator` 'Hedge' | 'Speculative', required
  - `modifiedBy` string, nullable, required
  - `modifiedAt` string, date-time, required
  - `onBehalfOf` string, nullable, required
  - `active` boolean, required

---

[API](https://skmtc.net/nordpoolgroup/apis/auction-member-test.md) · [All operations](https://skmtc.net/nordpoolgroup/apis/auction-member-test/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nordpoolgroup/auction-member-test/versions/6a21504d677e/schema)
