Skip to main content
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

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.

context
string
required
id
string
required
name
string
required
Maximum length: 255
main_tariffs
object[]
required
default_main_tariff
string
required
local_consumer_types
object[]
required
type
enum<string>
  • DSO - DSO
  • TSO - TSO
  • RET - Retailer
  • TAX - Tax
  • AUTH - Authority
  • OTHER - Other
Available options:
DSO,
TSO,
RET,
TAX,
AUTH,
OTHER
website_url
string<uri>
Maximum length: 255