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 Name | Description | Value Type |
---|---|---|
id | Unique identifier for the change order. | integer |
epc_company_id | ID of the EPC (Engineering, Procurement, Construction) company. | integer |
creator_id | ID of the user who created the change order. | integer |
change_values | Contains the new and old values for the items that have changed | object |
signer | Information about the person who signed the change order. | object |
co_signer | Information about the co-signer, if applicable. | object |
docflo_data | Contains document-related metadata for the signed change order | object |
pdf_url | URL to the PDF version of the signed change order. | string |
hash | Hash value representing the unique signature of the change order. | string |
created_at | Timestamp for when the change order was created. | string |
updated_at | Timestamp for the last update to the change order. | string |
deleted_at | Timestamp for when the change order was deleted, if applicable. | string |
status | Current status of the change order (e.g., complete). | string |
signed_at | Timestamp for when the change order was signed. | string |
notes | Optional notes associated with the change order. | string |
update_nem_docs | Indicator of whether NEM documents should be updated. | boolean |
nem_signer | Information about the NEM signer, if applicable. | object |
is_override | Flag 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",
...
}
]
Updated about 2 months ago