Flexibility Pools
Place bids for pool
Submit a set of bids to this pool
POST
/
entities
/
pool
/
{pool_id}
/
bids
/
actual
Authorization
Path
Body
curl --request POST \
--url http://localhost:8001/entities/pool/{pool_id}/bids/actual \
--header 'Content-Type: application/json' \
--data '[
{
"from_level_mw": 123,
"from_time": "2023-11-07T05:31:56Z",
"id": "<string>",
"price_eur": 123,
"submitted": true,
"to_level_mw": 123,
"to_time": "2023-11-07T05:31:56Z"
}
]'
[
{
"from_level_mw": 123,
"from_time": "2023-11-07T05:31:56Z",
"id": "<string>",
"price_eur": 123,
"submitted": true,
"to_level_mw": 123,
"to_time": "2023-11-07T05:31:56Z"
}
]
This endpoint does not display a Body field in the API playground: we are investigating. You can still hit the endpoint via the Swagger docs.
Path Parameters
pool_id
string
requiredBody
application/json · object[]
from_level_mw
number
requiredfrom_time
string
requiredStart time of bid/offer (UTC)
id
string
requiredprice_eur
number
requiredsubmitted
boolean
default: falseto_level_mw
number
requiredto_time
string
requiredEnd time of bid/offer (UTC)
Response
200 - application/json
from_level_mw
number
requiredfrom_time
string
requiredStart time of bid/offer (UTC)
id
string
requiredprice_eur
number
requiredsubmitted
boolean
default: falseto_level_mw
number
requiredto_time
string
requiredEnd time of bid/offer (UTC)
curl --request POST \
--url http://localhost:8001/entities/pool/{pool_id}/bids/actual \
--header 'Content-Type: application/json' \
--data '[
{
"from_level_mw": 123,
"from_time": "2023-11-07T05:31:56Z",
"id": "<string>",
"price_eur": 123,
"submitted": true,
"to_level_mw": 123,
"to_time": "2023-11-07T05:31:56Z"
}
]'
[
{
"from_level_mw": 123,
"from_time": "2023-11-07T05:31:56Z",
"id": "<string>",
"price_eur": 123,
"submitted": true,
"to_level_mw": 123,
"to_time": "2023-11-07T05:31:56Z"
}
]