Milestone Object

Contains details about a specific milestone within the project.

Table of Milestone Object

Value NameDescriptionValue Type
idUnique identifier for the milestone.integer
epc_company_idIdentifier for the EPC (Engineering, Procurement, and Construction) company associated with the milestone.integer
sequenceSequence number representing the order of the milestone in the project timeline.integer
titleTitle or name of the milestone.string
descriptionDetailed description of the milestone, explaining the tasks or processes involved.string
midUnique identifier for the milestone, often used for internal tracking.string
notify_customerFlag indicating whether the customer should be notified about the milestone. 0 means no notification, and 1 means the customer will be notified.integer
visible_customerFlag indicating whether the milestone is visible to the customer. 0 means it is hidden, and 1 means it is visible.integer
sms_bodyText message body sent to the customer regarding this milestone.string
email_bodyBody of the email sent to the customer regarding this milestone.string
email_subjectSubject of the email sent to the customer regarding this milestone.string
email_fromThe email address from which the milestone email is sent.string
meta_dataContains additional metadata related to the milestone.object
assigned_user_idUnique identifier for the user assigned to this milestone. If not assigned, this field is null.integer
created_atDate and time when the milestone was created.string
updated_atDate and time when the milestone was last updated.string
email_from_typeType of email sender for the milestone email (e.g., other).string
deleted_atDate 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
}