GET
/
organizations
/
{id}
/
Retrieve Organization
curl --request GET \
  --url https://sandbox.prezio.eu/api/organizations/{id}/ \
  --header 'Authorization: <api-key>'
{
  "id": "org_123",
  "name": "Vattenfall",
  "type": "RET",
  "website_url": "https://www.vattenfall.dk",
  "logo": "https://api.prezio.eu/media/logos/vattenfall.png",
  "main_tariffs": [
    {
      "id": "mta_123",
      "name": "Green Tariff",
      "description": "Green tariff with several tariff variants"
    }
  ],
  "default_main_tariff": "mta_123",
  "local_consumer_types": [
    {
      "id": "lct_42",
      "key": "privatkunder",
      "name": "Privatkunder",
      "consumer_type": "RESIDENTIAL"
    }
  ]
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Path Parameters

id
string
required

Organization ID (e.g., org_123).

Response

200
application/json

OK

The response is of type object.