Skip to main content
POST
/
physical-assets
/
{physicalAssetID}
/
ancillary
/
bids
Submit ancillary bids
curl --request POST \
  --url https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/bids \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "bids": [
      {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "capacityPrice": 100.5,
        "energyPrice": 100.5,
        "offeredCapacity": 1000
      }
    ],
    "deliveryDay": "2025-11-11",
    "product": "NEGPOS_00_04"
  }
]
'
[
  {
    "deliveryDay": "2025-11-11",
    "product": "NEGPOS_00_04",
    "productDateCode": "2025-11-11_NEGPOS_00_04",
    "bids": [
      {
        "capacityPrice": 100.5,
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "offeredCapacity": 1000,
        "energyPrice": 100.5,
        "status": "<string>"
      }
    ]
  }
]

Headers

Authorization
string
default:Bearer <access token value>
required

Access token

Path Parameters

physicalAssetID
string<uuid>
required

Physical asset ID

Body

application/json

Bids grouped by product and delivery day

bids
object[]
required
deliveryDay
string
required
Example:

"2025-11-11"

product
string
required
Example:

"NEGPOS_00_04"

Response

Created

deliveryDay
string
required
Example:

"2025-11-11"

product
string
required
Example:

"NEGPOS_00_04"

productDateCode
string
required
Example:

"2025-11-11_NEGPOS_00_04"

bids
object[]
Last modified on June 30, 2026