Change Orders Array

Contains information about changes made to an install, including details about added costs, system updates, and associated documents. Each change order tracks differences between new and old values for various system components and pricing metrics.

Table of Company Object

Value NameDescriptionValue Type
idUnique identifier for the change order.integer
epc_company_idID of the EPC (Engineering, Procurement, Construction) company.integer
creator_idID of the user who created the change order.integer
change_valuesContains the new and old values for the items that have changedobject
signerInformation about the person who signed the change order.object
co_signerInformation about the co-signer, if applicable.object
docflo_dataContains document-related metadata for the signed change orderobject
pdf_urlURL to the PDF version of the signed change order.string
hashHash value representing the unique signature of the change order.string
created_atTimestamp for when the change order was created.string
updated_atTimestamp for the last update to the change order.string
deleted_atTimestamp for when the change order was deleted, if applicable.string
statusCurrent status of the change order (e.g., complete).string
signed_atTimestamp for when the change order was signed.string
notesOptional notes associated with the change order.string
update_nem_docsIndicator of whether NEM documents should be updated.boolean
nem_signerInformation about the NEM signer, if applicable.object
is_overrideFlag indicating whether the change order is an override.boolean

Example of Company Object

"change_orders": [
    {
      "id": 01234567,
      "epc_install_id": 987654,
      "creator_id": 123456,
      "change_values": {
        "adders": {
          "new": {
            "986": {
              "id": 986,
              "cost": 300,
              "name": "Customer Concierge Fee",
              "active": false,
              "quantity": 1,
              "ignore_cost": 0,
              "starting_cost": 300
            },
            ...
          },
          "old": {
            "986": {
              "id": 986,
              "cost": 300,
              "name": "Customer Concierge Fee",
              "active": true,
              "quantity": 1
            },
            ...
          }
        },
        "net_ppw": {
          "new": 3.169,
          "old": 3.15
        },
        ...
      },
      "signer": {
        "email": "[email protected]",
        "phone": "1234568900",
        "first_name": "Enerflo",
        "last_name": "Testing"
      },
      "docflo_data": {
        "documents": {
          "template--change-order": "https://assets.enerflo.io/docflo_pdfs/executed/example.pdf"
        },
        "signer_id": "123abc456def789",
        ...
      },
      "pdf_url": "https://assets.enerflo.io/docflo_pdfs/executed/example.pdf",
      "created_at": "2024-09-19 19:16:29",
      "updated_at": "2024-09-19 19:16:40",
      "signed_at": "2024-09-19 19:16:40",
      "status": "complete",
      ...
    }
  ]