Project object

Project object

Attribute
id UUID
Unique ID of the project.
selfUri URI
URI to the project.
title string
Name of the project.
editorUri URI
URI to open Marq's Editor for the project.
publishedUri URI
URI of the published project.
thumbnailUri URI
URI of the thumbnail preview of the project.
templateId UUID
UID of the template used to create the project. The templateId will be NULL if a "blank" project was created (i.e. a project was not created from a template).
ownerId Integer
ID of the user that owns the project (the user who initially created the project or was transferred ownership from another user).
created DateTime
The date when the project was created. Date is formatted using the ISO 8601 format: YYYY-MM-DDThh:mm:ssTZD. (eg. 2022-09-13T23:07:50Z)
lastModified DateTime
The date for the last time that the project was updated. Updates can include changing elements or content on the project, changing the project's title, or sharing with other users. Date is formatted using the ISO 8601 format: YYYY-MM-DDThh:mm:ssTZD. (eg. 2022-09-13T23:07:50Z)
dataItemUsages Array
See details below on Data Item Usages.

Data Item Usages

Attribute
fieldLabel String
The label of the data item that was applied (primary key for the data item).
_e.g. "Opportunity ID"orMLS Property IDorEmployee Email`
fieldValue String
The value of the data item that was applied. This is the primary key for the data item.
e.g. "12-342"or123asdf230or[email protected]`
{
	"id": "e675f8ed-0a4f-43a7-93cd-74b00e8c2990",
	"selfUri": "https://api.marq.com/v1/users/000000000/projects/e675f8ed-0a4f-43a7-93cd-74b00e8c7898",
	"title": "Black Friday Instagram Post",
	"editorUri": "https://app.marq.com/projects/edit/e675f8ed-0a4f-43a7-93cd-74b00e8c7898",
	"publishedUri": "https://pub.marq.com/e675f8ed-0a4f-43a7-93cd-74b00e8c7898/",
	"thumbnailUri": "https://app.marq.com/projects/thumb/e675f8ed-0a4f-43a7-93cd-74b00e8c7898/0/505735/NULL/400",
	"templateId": "e675f8ed-0a4f-43a7-93cd-74b00e8c2778",
  "ownerId": 116622339,
	"created": "2022-09-12T20:17:33Z",
	"lastModified": "2022-09-13T23:07:50Z",
	"dataItemUsages": [{
			"fieldValue": 453156881,
			"fieldLabel": "MLS ID"
		},
		{
			"fieldValue": 525,
			"fieldLabel": "Employee ID"
		}
	]
}