v1

latestOpenAPI 3.0.02026-07-241010520.6 KB
Design Requests

Create Design Request

Create a new design request.


Use the latitude/longitude attributes to set the project marker on top of the building you would like modeled. If latitude/longitude are not explicitly provided in this request, the latitude/longitude values of the project will be used. However, the project latitude/longitude may not represent the building that should have the solar installation.

post/tenants/{tenant_id}/design_requests

Path parameters

tenant_idstring uuid required

The ID of the tenant to create the design request for.

Request body

Example request

{
  "design_request": {
    "latitude": 37.77960043,
    "longitude": -122.39530086,
    "sla": 180,
    "auto_accept": true,
    "roof_pitch": 15,
    "number_of_stories": 2
  }
}

Response

Design Request successfully created.

Example response

{
  "design_request": {
    "status": "submitted",
    "latitude": 40.71435282,
    "longitude": -74.00597314,
    "address": "123 Main Street, Unit 12, City, CA, 93120",
    "sla": 180,
    "auto_accept": true,
    "roof_pitch": 15,
    "number_of_stories": 2
  }
}