Milestone Object
Contains details about a specific milestone within the project.
Table of Milestone Object
Value Name | Description | Value Type |
---|---|---|
id | Unique identifier for the milestone. | integer |
epc_company_id | Identifier for the EPC (Engineering, Procurement, and Construction) company associated with the milestone. | integer |
sequence | Sequence number representing the order of the milestone in the project timeline. | integer |
title | Title or name of the milestone. | string |
description | Detailed description of the milestone, explaining the tasks or processes involved. | string |
mid | Unique identifier for the milestone, often used for internal tracking. | string |
notify_customer | Flag indicating whether the customer should be notified about the milestone. 0 means no notification, and 1 means the customer will be notified. | integer |
visible_customer | Flag indicating whether the milestone is visible to the customer. 0 means it is hidden, and 1 means it is visible. | integer |
sms_body | Text message body sent to the customer regarding this milestone. | string |
email_body | Body of the email sent to the customer regarding this milestone. | string |
email_subject | Subject of the email sent to the customer regarding this milestone. | string |
email_from | The email address from which the milestone email is sent. | string |
meta_data | Contains additional metadata related to the milestone. | object |
assigned_user_id | Unique identifier for the user assigned to this milestone. If not assigned, this field is null. | integer |
created_at | Date and time when the milestone was created. | string |
updated_at | Date and time when the milestone was last updated. | string |
email_from_type | Type of email sender for the milestone email (e.g., other). | string |
deleted_at | Date and time when the milestone was deleted, if applicable. If not deleted, this field is null. | string |
Example of Milestone Object
"milestone": {
"id": 3902,
"epc_company_id": 3104,
"sequence": 1,
"title": "Engineering",
"description": "Our engineering team is preparing the engineering plans for your solar installation. Once the plans are complete, they will be reviewed for accuracy and code compliance prior to permitting.",
"mid": "a123b456",
"notify_customer": 0,
"visible_customer": 1,
"sms_body": "Enerflo Solar has great news! Your solar engineering is in full swing! Our expert team is crafting the final design, and soon, you'll receive the polished layout for your Solar Panels and their electrical setup via email. Your solar vision is turning into reality! Get ready to embrace the power of the sun! ☀️💫",
"email_body": "email body",
"email_subject": "Enerflo Solar - Engineering Plans Are Being Completed!",
"email_from": "[email protected]",
"meta_data": {
"estimate_days": "3",
"additional_emails": [
""
],
"notify_assigned_user": "0",
"sms_body_assigned_user": null,
"list_as_project_manager": "0",
"email_body_assigned_user": "",
"email_from_assigned_user": null,
"email_subject_assigned_user": null,
"email_from_type_assigned_user": null
},
"assigned_user_id": null,
"created_at": "2023-01-17 18:56:59",
"updated_at": "2024-04-11 18:14:23",
"email_from_type": "other",
"deleted_at": null
}
Updated 3 months ago