GET

Get Project Item


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Retrieves a project item.

Permissions
Manage Portfolio
Learn more about app permissions.
Endpoint
GET
https://www.wixapis.com/portfolio/v1/Items/{itemId}

Path Params
itemIdstringRequired

Project item ID.

Response Object
itemItem

Project item.

Get Project Item
Request
cURL
curl -X GET \ 'https://www.wixapis.com/portfolio/v1/Items/456e7890-e89b-12d3-a456-426614174001' \ -H 'Authorization: <AUTH>' \ -H 'Content-Type: application/json'
Response
JSON
{ "item": { "id": "456e7890-e89b-12d3-a456-426614174001", "projectId": "123e4567-e89b-12d3-a456-426614174000", "title": "Item Title 1", "description": "This is item description 1.", "sortOrder": 1.0, "type": "IMAGE", "image": { "imageInfo": { "url": "https://example.com/image1.jpg", "id": "3886bbcc7fb-66b77-888aaf-3c45227f" } }, "createdDate": "2024-07-31T12:00:00Z", "updatedDate": "2024-07-31T12:00:00Z", "link": { "text": "Visit Site 1", "url": "https://example.com", "target": "_blank" } } }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?