Skip to content

User Management

The user API which will give you all the information about an individual and all the information about the participants. The User API can be accessed by Trade, Report and Wallet users.

Get My Participants

Request

This request will give you the information of the participants that are representing you.

Security
api-key
GET
/public-api/1.0/electricity/users/participants
curl -i -X GET \
  https://acc-trading.etpa.nl/public-api/1.0/electricity/users/participants \
  -H 'api_key: YOUR_API_KEY_HERE'

Responses

Requested participants

Bodyapplication/json
Array [
idstringrequired
namestring
kvKstring
ibanstring
bicstring
externalIdstring
externalIdTypestring
Enum:"ACER""LEI""EIC""GLN""BIC"
recipientIdstring
addressesArray of objects(Address)
maxSellEnumber
maxBuyEnumber
maxSellGnumber
maxBuyGnumber
contactsArray of objects(Contact)
brokerboolean
pvPartyParticipantboolean
intradayboolean
expostboolean
gridOperatorboolean
enappsysboolean
idconsboolean
representedBystring
vatWarehouseboolean
vatNumberstring
walletBalancenumber
xbidEnabledbooleanrequired
brpDeliveryAreasArray of strings
]
Response
[ { "id": "string", "name": "string", "kvK": "string", "iban": "string", "bic": "string", "externalId": "string", "externalIdType": "ACER", "recipientId": "string", "addresses": [], "maxSellE": 0, "maxBuyE": 0, "maxSellG": 0, "maxBuyG": 0, "contacts": [], "broker": true, "pvPartyParticipant": true, "intraday": true, "expost": true, "gridOperator": true, "enappsys": true, "idcons": true, "representedBy": "string", "vatWarehouse": true, "vatNumber": "string", "walletBalance": 0, "xbidEnabled": true, "brpDeliveryAreas": [] } ]