GET
/
organizations
/
{id}
/
Retrieve Organization
curl --request GET \
  --url https://sandbox.prezio.eu/api/organizations/{id}/ \
  --header 'Authorization: <api-key>'
{
  "context": null,
  "id": "org_123",
  "name": "Radius Elnet",
  "type": "DSO",
  "website_url": "https://radiuselnet.dk",
  "logo": "https://api.prezio.eu/media/logos/radius.png",
  "main_tariffs": [
    {
      "id": "mta_456",
      "name": "C Tariff",
      "description": "Standard residential tariff"
    }
  ],
  "default_main_tariff": "mta_456",
  "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. Supports 'org_' prefixed ID (e.g., org_123) or raw integer ID.

Response

200
application/json

Success. Returns a single organization by ID.

Serializer for single organization retrieve response with optional context.

The response mirrors the list endpoint's result items but moves them to the root level and optionally includes a top-level context.