Skip to content

Reporting v3

This allows PV-parties (BRPs) to access the trade level information of the participants connected to them, no order information is given to the pv-party. Strictly for reporting purposes. The linking of participants to a PV-party is managed solely by the ETPA administrator. PV-parties cannot add or modify their own participant connections in the ETPA system.

Get PV-Party participant report

Request

Security
api-key
Query
startDateinteger, (int64)

Fetch trades with transaction date larger than start Unix timestamp.

endDateinteger, (int64)

Fetch trades with transaction date smaller than end Unix timestamp.

participantsstring

Fetch trades only for given participants. Please provide comma separated identifiers. Example = "?participants=participantId1,participantId2"

pageableobject(Pageable)required
Example:page=0&size=1
GET
/public-api/3.0/electricity/reporting/pv-party-participant
curl -i -X GET \
  'https://acc-trading.etpa.nl/public-api/3.0/electricity/reporting/pv-party-participant?startDate=0&endDate=0&participants=string&pageable=page%3D0%26size%3D1' \
  -H 'api_key: YOUR_API_KEY_HERE'

Responses

OK

Bodyapplication/json
Array [
idstring
tradeIdstringrequired
xbidTradeIdstring
productTypestringrequired
Example:"ELECTRICITY"
timeBlockstringrequired
Example:"INTRADAY"
typestringrequired
capacitynumber, (double)required
amountnumber, (double)required
startinteger, (int64)required
Example:1517406300000
endinteger, (int64)required
Example:1517413500000
transactionDateinteger, (int64)required
Example:1517404532975
nominationMethodBuystringrequired
Example:"DSN"
nominationMethodSellstringrequired
buyerNamestring
buyerParticipantIdstring
buyOrderEanstring
sellerNamestring
sellerParticipantIdstring
sellOrderEanstring
isTradedForIdconsboolean
buyDeliveryAreastring
Enum:"AT""BG""BE""CZ""DE1""DE2""DE3""DE4""DK1""DK2"
sellDeliveryAreastring
Enum:"AT""BG""BE""CZ""DE1""DE2""DE3""DE4""DK1""DK2"
metaDataBuyobject
metaDataSellobject
isRevertedboolean
]
Response
[ { "id": "string", "tradeId": "string", "xbidTradeId": "string", "productType": "ELECTRICITY", "timeBlock": "INTRADAY", "type": "string", "capacity": 0.1, "amount": 0.1, "start": 1517406300000, "end": 1517413500000, "transactionDate": 1517404532975, "nominationMethodBuy": "DSN", "nominationMethodSell": "string", "buyerName": "string", "buyerParticipantId": "string", "buyOrderEan": "string", "sellerName": "string", "sellerParticipantId": "string", "sellOrderEan": "string", "isTradedForIdcons": true, "buyDeliveryArea": "AT", "sellDeliveryArea": "AT", "metaDataBuy": {}, "metaDataSell": {}, "isReverted": true } ]