Project Item Object


Properties
projectIdstringformat GUID

Project ID.


idstringRead-onlyformat GUID

Project item ID.


sortOrdernumberformat double

Index that determines which position a project is displayed in the project.

Default: Epoch timestamp.


titlestring

Project item title.


descriptionstring

Project item description.


typestringRead-only

Project item data type.


createdDatestringRead-onlyformat date-time

Date and time the project item was created.


updatedDatestringRead-onlyformat date-time

Date and time the project item was last updated.


linkLink

Project item link.


One Of
Choose one of the following parameters

imageImage

Information about the Wix Media image.


videoVideo

Information about the Wix Media video.

Item
JSON
{ "projectId": "123e4567-e89b-12d3-a456-426614174000", "id": "987e6543-e21a-10d2-b987-426614176789", "sortOrder": 1694090400.0, "title": "Sample Project Item Title", "description": "This is a description for the sample project item.", "type": "IMAGE", "image": { "imageInfo": { "id": "987e6543-e21a-10d2-b987-426614176789", "url": "https://example.com/image.jpg", "width": 1920, "height": 1080 } }, "createdDate": "2024-07-31T12:00:00Z", "updatedDate": "2024-07-31T12:00:00Z", "link": { "text": "View Project", "url": "https://example.com/project", "target": "_blank" } }
Did this help?