This documentation describes the endpoints available in the AutoDNOExternal controller and provides details on the request models, including which fields are required and which are optional. The API supports operations for searching for ENA/EV charger/heat pump details, generating various documents (such as LOA and SLD), submitting ENA applications, and generating EV/HP documents.

API Key Authentication

All endpoints in the AutoDNOExternal API require authentication via an API key. This key must be included in every request using the HTTP header X-API-KEY.

  • Header Name: X-API-KEY
  • Value: Your assigned API key (for example, YOUR_API_KEY).

In Postman, set up an environment or global variable (e.g. {{api-key}}) and include it in the request headers. For example:

X-API-KEY: {{api-key}}
  

This header must be sent with every API call to ensure proper authentication.

Endpoints Overview

1. Generate Documents

Endpoint: POST /api/AutoDNOExternal/GenerateDocuments

Description: Accepts a GenerateDocumentRequest that contains a solar form and a list of form types to generate (e.g., "G98", "A1-2", "LOA", "SLD"). The endpoint validates the data, generates the requested documents using PDF generation and document replacement logic, and returns the results as either a file URL or raw file data.

Request Model: GenerateDocumentRequest

Field Type Required? Description
SolarForm SolarFormExternal Yes Contains installation details (Company, Project, Inverters, Connection, AdvancedSettings). See the SolarFormExternal section for details.
FormOutput List<string> No Specifies which form types to generate. If omitted, the system chooses forms based on criteria (e.g., inverter capacity). Examples: "G98", "LOA", "SLD", etc.
ReturnFileOption string Yes Determines how the file(s) are returned. Options include "Server" (public URL), "S3" (stored on S3), or "raw" (Base64-encoded file data).
Password string No Optional password for encrypting generated PDF files (if applicable).

2. Generate LOA Document

Endpoint: POST /api/AutoDNOExternal/GenerateLOA

Description: Generates a Letter of Authority (LOA) document. This endpoint expects a SolarFormExternal object that includes company and project details. The Inverters list may be empty, as inverter details are not used for LOA generation. The project’s Boundary field is used to insert any necessary diagram/image data.

3. Generate SLD Document

Endpoint: POST /api/AutoDNOExternal/GenerateSLD

Description: Generates a Single Line Diagram (SLD) document. This endpoint expects a complete SolarFormExternal object with detailed inverter data (including optional PV panel and battery details). It returns two outputs: a PNG image of the diagram and a DrawIO XML string.

4. Submit ENA Application

Endpoint: POST /api/AutoDNOExternal/SubmitENAApplication

Description: Submits an ENA application for a solar installation. The request is an ExpandedFormExternal object that extends SolarFormExternal with additional fields for inverters (using InverterENADetails), heat pumps, EV chargers, and an optional cutout file attachment.

5. Generate EV/HP Documents

Endpoint: POST /api/AutoDNOExternal/GenerateEVHPDocuments

Description: Generates documents related to EV chargers and heat pumps. The request accepts an object that includes a form (of type ExpandedFormExternal), a list of form outputs, and options for file return and password protection.

Model Field Details

GenerateDocumentRequest

FieldTypeRequired?Description
SolarFormSolarFormExternalYesContains installation details. See SolarFormExternal for a breakdown.
FormOutputList<string>NoDetermines which document types to generate. If not provided, forms are chosen based on inverter capacity and other criteria.
ReturnFileOptionstringYesOptions include "Server", "S3", or "raw".
PasswordstringNoOptional password to encrypt generated PDF files.

SolarFormExternal

FieldTypeRequired?Description
CompanyCompanyDetailsYesContains installer/company details (name, contact, address).
ProjectProjectDetailsYesContains project or customer installation details (address, contact, boundary – optional).
InvertersList<InverterDetails>Yes*A list of inverter details. Required when generating SLD documents or submitting an ENA application. For LOA, this list may be empty.
ConnectionConnectionDetailsYesMust include Mpan and Phase (1 for single-phase; 3 for three-phase).
AdvancedSettingsAdvancedSettingsNoOptional. Contains settings such as SaveName for file storage.

CompanyDetails

FieldTypeRequired?Description
CompanyNamestringYesName of the installer/company.
AddressSolarAddressYesAddress details. See below.
ContactContactYesContact details including first name, last name, email and phone.

ProjectDetails

FieldTypeRequired?Description
CompanyNamestringNo*Typically the customer company name; may be required based on business rules.
AddressSolarAddressYesProject installation address details.
ContactContactYesProject contact details.
BoundarystringNoOptional field used by the LOA document generator (typically image data).

SolarAddress

FieldTypeRequired?Description
StreetstringYesThe street address.
SecondLinestringNoAdditional address line (optional).
CitystringYesThe city name.
PostcodestringYesThe postal code.
FormattedAddressstring (computed)A concatenated address string in the format: Street, [SecondLine,] City, Postcode.

Contact

FieldTypeRequired?Description
FirstNamestringYesFirst name of the contact.
LastNamestringYesLast name of the contact.
PhonestringYesTelephone number.
EmailstringYesEmail address.
FullNamestring (computed)Automatically computed as FirstName LastName.
SignNamestring (computed)A shortened signature version (e.g. first letter of first name and full last name).

ConnectionDetails

FieldTypeRequired?Description
MpanstringYesThe Meter Point Administration Number.
PhaseintYesElectrical phase (typically 1 for single-phase or 3 for three-phase).

InverterDetails

FieldTypeRequired?Description
ManufacturerstringYesName of the inverter manufacturer.
CapacitystringYesInverter capacity (numeric value as a string).
ModelstringYesModel designation.
ENACodestringYes*Reference code for ENA/compliance. If missing, it may be auto-populated via a lookup.
RemoveboolNoIf set to true, the inverter is to be removed on install.
ExistingboolYesIndicates if this inverter is part of an existing installation.
BatteryBatteryDetailsNoOptional battery details associated with the inverter.
StandardFormFieldsStandardFormFieldsNoAdditional numeric parameters for PDF generation (e.g., max output currents). Only required for systems over 50KW.
PVDataPVData[]NoOptional panel string data used only for SLD generation.

BatteryDetails

FieldTypeRequired?Description
ManufacturerstringNoBattery manufacturer name.
ModelstringNoBattery model designation.
CapacitystringYesBattery capacity (e.g. in kWh).

AdvancedSettings

FieldTypeRequired?Description
SaveNamestringNoOptional file name suggestion used when saving generated documents.

StandardFormFields

FieldTypeRequired?Description
MaxApparentOutputPowerdecimalYesThe maximum apparent output power of the inverter.
RatedOutputCurrentdecimalYesThe rated output current of the inverter.
MaxOutputCurrentdecimalYesThe maximum output current of the inverter.

ExpandedFormExternal

This model extends SolarFormExternal for ENA submission by adding additional component lists and file attachments.

FieldTypeRequired?Description
InvertersList<InverterENADetails>YesInverter details for ENA submission. Similar to InverterDetails, but may include additional fields such as V2G.
HeatpumpsList<HeatpumpDetails>NoOptional list of heat pump details (used if the installation includes heat pumps).
EVChargersList<EVChargerDetails>NoOptional list of EV charger details (used if the installation includes EV chargers).
CutoutFilebyte[]NoOptional binary file (typically an image) to be attached with the ENA application.

HeatpumpDetails

FieldTypeRequired?Description
HeatPumpManufacturerstringYesManufacturer of the heat pump.
HeatPumpModelstringYesModel designation of the heat pump.
HeatPumpCapacitystringYesCapacity of the heat pump.
ENACodestringYesCompliance reference code.
RemoveboolNoIf true, this heat pump is excluded from processing.
ExistingboolYesIndicates whether this heat pump is part of an existing installation.

EVChargerDetails

FieldTypeRequired?Description
EVChargerManufacturerstringYesManufacturer of the EV charger.
EVChargerModelstringYesModel of the EV charger.
EVChargerCapacitystringYesCapacity of the EV charger.
ENACodestringYesCompliance reference code.
TypestringNoSpecifies the type (e.g., AC/DC) if applicable.
RemoveboolNoIf true, this EV charger is excluded.
ExistingboolYesIndicates if this charger is already installed.

Usage Examples

Example 1: Generating a Set of Documents

Call GenerateDocuments with a JSON body that includes a valid SolarFormExternal (with company, project, inverter, and connection details) and a list of form outputs (e.g., ["G98", "LOA", "SLD"]). If a Password is provided, applicable PDF files will be password protected.

Example 2: Generating LOA Documents

Call GenerateLOA with a SolarFormExternal object that includes installer and project details. The Inverters list may be empty as LOA does not require inverter data.

Example 3: Generating SLD Documents

Call GenerateSLD with a full SolarFormExternal including inverter details (and optional PVData and Battery information) to produce a schematic. The output includes a PNG image and a DrawIO XML string.

Example 4: Submitting an ENA Application

Call SubmitENAApplication with an ExpandedFormExternal JSON body. This model extends SolarFormExternal by including lists for Inverters (using InverterENADetails), Heatpumps, and EVChargers (if applicable), as well as an optional CutoutFile for file attachments.

Example 5: Generating EV/HP Documents

Call GenerateEVHPDocuments with a JSON object containing the form (of type ExpandedFormExternal), the desired form outputs, and options for file return and password protection.

This documentation provides an overview of the AutoDNOExternal API endpoints along with the models required for each operation. The endpoints support searching for ENA, EV charger, and heat pump details, generating multiple document types (PDFs, LOA, SLD, etc.), submitting ENA applications, and generating EV/HP documents. Optional fields such as AdvancedSettings.SaveName, Project.Boundary, and additional component lists in ExpandedFormExternal allow customization based on the installation requirements.

For further integration, adjust sample JSON bodies and field values as needed to match your business rules and data.

Here’s a Postman collection examples of the endpoints, you will require an API key from support before being able to submit any endpoints.