POST /api/v3/energyproject/energyprojecttype

Creates a new energy project type category

CreateEnergyProjectTypeV3 Permissions: FacilityProjects (Create)
Use this endpoint to add a new project type category that can be assigned to energy projects. Requires Facility Projects Create permission.

Request Headers

Header Value Required Description
ECI-ApiKey string Yes Your API key. See Authentication.
Content-Type application/json Yes All requests must specify JSON content type, including the request body.

Request Body

EnergyProjectTypeCreate
Property Description Type
energyProjectTypeCode Short alphanumeric code for the project type (e.g., “LIGHT”). Max 16 characters Required Must be between 0 and 16 characters string
energyProjectTypeInfo Descriptive name of the project type (e.g., “Lighting Retrofit”). Max 32 characters Required Must be between 0 and 32 characters string
Example Request Body application/json
{  "energyProjectTypeCode": "string",  "energyProjectTypeInfo": "string"
}

Responses

200 OK The request succeeded and the response body contains the requested data.

Response Body Parameters

EnergyProjectType
Property Description Type
energyProjectTypeCode Short alphanumeric code identifying this project type (e.g., “LIGHT”) string
energyProjectTypeId Unique numeric identifier of the project type integer (int32)
energyProjectTypeInfo Descriptive name of the project type (e.g., “Lighting Retrofit”) string
Example Response application/json
{  "energyProjectTypeCode": "string",  "energyProjectTypeId": 1,  "energyProjectTypeInfo": "string"
}