> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # CreateProjectItem # Package: portfolio # Namespace: ProjectItemsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/portfolio/project-items/create-project-item.md ## Permission Scopes: Manage Portfolio: SCOPE.PORTFOLIO.MANAGE-PORTFOLIO ## Introduction Creates a project item. --- ## REST API ### Schema ``` Method: createProjectItem Description: Creates a project item. URL: https://www.wixapis.com/portfolio/project-items/api/v1/portfolio/items Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: item Method parameters: param name: item | type: Item | required: true - ONE-OF: - required: true - name: image | type: Image | description: Information about the Wix Media image. - name: imageInfo | type: Image | description: Information about the Wix Media image. - name: id | type: string | description: WixMedia image GUID. Required. - name: height | type: integer | description: Original image height. Required. - name: width | type: integer | description: Original image width. Required. - name: altText | type: string | description: Image alt text. - name: filename | type: string | description: Image filename. - name: focalPoint | type: Point | description: Focal point of the image. - name: x | type: number | description: X-coordinate of the focal point. - name: y | type: number | description: Y-coordinate of the focal point. - name: video | type: Video | description: Information about the Wix Media video. - name: videoInfo | type: VideoV2 | description: Information about the Wix Media video. - name: id | type: string | description: WixMedia GUID. Required. - name: url | type: string | description: Video URL. - name: resolutions | type: array | description: Available resolutions for the video, starting with the optimal resolution. - name: url | type: string | description: Video URL. Required. - name: height | type: integer | description: Video height. Required. - name: width | type: integer | description: Video width. Required. - name: format | type: string | description: Video format for example, mp4, hls. Required. - name: quality | type: string | description: Video quality for example 480p, 720p. - name: filename | type: string | description: Video filename. - name: filename | type: string | description: Video filename. - name: posters | type: array | description: Video posters. - name: durationInMillis | type: integer | description: Manually defined Video duration in milliseconds. - name: projectId | type: string | description: Project GUID. - name: sortOrder | type: number | description: Index that determines which position a project is displayed in the project.
Default: [Epoch](https://www.epoch101.com/) timestamp.
- name: title | type: string | description: Project item title. - name: description | type: string | description: Project item description. - name: link | type: Link | description: Project item link. - name: text | type: string | description: Display text of the link. - name: url | type: string | description: Target URL of the link. - name: target | type: string | description: Whether the link opens in a new tab or window. One of: * `'_blank'`: The link opens in a new tab or window. * `'_self'`: The link opens in the same tab or window. Return type: CreateProjectItemResponse - name: item | type: Item | description: Newly created project item. - ONE-OF: - name: image | type: Image | description: Information about the Wix Media image. - name: imageInfo | type: Image | description: Information about the Wix Media image. - name: id | type: string | description: WixMedia image GUID. Required. - name: url | type: string | description: Image URL. - name: height | type: integer | description: Original image height. Required. - name: width | type: integer | description: Original image width. Required. - name: altText | type: string | description: Image alt text. - name: filename | type: string | description: Image filename. - name: focalPoint | type: Point | description: Focal point of the image. - name: x | type: number | description: X-coordinate of the focal point. - name: y | type: number | description: Y-coordinate of the focal point. - name: video | type: Video | description: Information about the Wix Media video. - name: videoInfo | type: VideoV2 | description: Information about the Wix Media video. - name: id | type: string | description: WixMedia GUID. Required. - name: url | type: string | description: Video URL. - name: resolutions | type: array | description: Available resolutions for the video, starting with the optimal resolution. - name: url | type: string | description: Video URL. Required. - name: height | type: integer | description: Video height. Required. - name: width | type: integer | description: Video width. Required. - name: format | type: string | description: Video format for example, mp4, hls. Required. - name: quality | type: string | description: Video quality for example 480p, 720p. - name: filename | type: string | description: Video filename. - name: filename | type: string | description: Video filename. - name: posters | type: array | description: Video posters. - name: durationInMillis | type: integer | description: Manually defined Video duration in milliseconds. - name: projectId | type: string | description: Project GUID. - name: id | type: string | description: Project item GUID. - name: sortOrder | type: number | description: Index that determines which position a project is displayed in the project.
Default: [Epoch](https://www.epoch101.com/) timestamp.
- name: title | type: string | description: Project item title. - name: description | type: string | description: Project item description. - name: type | type: Type | description: Project item data type. - enum: - UNDEFINED: Undefined item type. - IMAGE: Image item type. - VIDEO: Video item type. - name: createdDate | type: string | description: Date and time the project item was created. - name: updatedDate | type: string | description: Date and time the project item was last updated. - name: link | type: Link | description: Project item link. - name: text | type: string | description: Display text of the link. - name: url | type: string | description: Target URL of the link. - name: target | type: string | description: Whether the link opens in a new tab or window. One of: * `'_blank'`: The link opens in a new tab or window. * `'_self'`: The link opens in the same tab or window. ``` ### Examples ### Create Project Item ```curl curl -X POST \ 'https://www.wixapis.com/portfolio/v1/Items' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ -d '{ "item": { "projectId": "123e4567-e89b-12d3-a456-426614174000", "sortOrder": 1.0, "title": "Lonely", "description": "This is the Lonely song image cover.", "image": { "imageInfo": { "id": "23ff-66b77-888aaf-9c45227e" } }, "link": { "text": "Listen to the song", "url": "https://lonely-song.com", "target": "_blank" } } }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.portfolio.ProjectItemsService.createProjectItem(item) Description: Creates a project item. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: item Method parameters: param name: item | type: Item | required: true - ONE-OF: - required: true - name: image | type: Image | description: Information about the Wix Media image. - name: imageInfo | type: string | description: Information about the Wix Media image. - name: focalPoint | type: Point | description: Focal point of the image. - name: x | type: number | description: X-coordinate of the focal point. - name: y | type: number | description: Y-coordinate of the focal point. - name: video | type: Video | description: Information about the Wix Media video. - name: videoInfo | type: string | description: Information about the Wix Media video. - name: durationInMillis | type: integer | description: Manually defined Video duration in milliseconds. - name: projectId | type: string | description: Project GUID. - name: sortOrder | type: number | description: Index that determines which position a project is displayed in the project.
Default: [Epoch](https://www.epoch101.com/) timestamp.
- name: title | type: string | description: Project item title. - name: description | type: string | description: Project item description. - name: link | type: Link | description: Project item link. - name: text | type: string | description: Display text of the link. - name: url | type: string | description: Target URL of the link. - name: target | type: string | description: Whether the link opens in a new tab or window. One of: * `'_blank'`: The link opens in a new tab or window. * `'_self'`: The link opens in the same tab or window. Return type: PROMISE - ONE-OF: - name: image | type: Image | description: Information about the Wix Media image. - name: imageInfo | type: string | description: Information about the Wix Media image. - name: focalPoint | type: Point | description: Focal point of the image. - name: x | type: number | description: X-coordinate of the focal point. - name: y | type: number | description: Y-coordinate of the focal point. - name: video | type: Video | description: Information about the Wix Media video. - name: videoInfo | type: string | description: Information about the Wix Media video. - name: durationInMillis | type: integer | description: Manually defined Video duration in milliseconds. - name: projectId | type: string | description: Project GUID. - name: _id | type: string | description: Project item GUID. - name: sortOrder | type: number | description: Index that determines which position a project is displayed in the project.
Default: [Epoch](https://www.epoch101.com/) timestamp.
- name: title | type: string | description: Project item title. - name: description | type: string | description: Project item description. - name: type | type: Type | description: Project item data type. - enum: - UNDEFINED: Undefined item type. - IMAGE: Image item type. - VIDEO: Video item type. - name: _createdDate | type: Date | description: Date and time the project item was created. - name: _updatedDate | type: Date | description: Date and time the project item was last updated. - name: link | type: Link | description: Project item link. - name: text | type: string | description: Display text of the link. - name: url | type: string | description: Target URL of the link. - name: target | type: string | description: Whether the link opens in a new tab or window. One of: * `'_blank'`: The link opens in a new tab or window. * `'_self'`: The link opens in the same tab or window. ``` ### Examples ### createProjectItem ```javascript import { projectItems } from '@wix/portfolio'; async function createProjectItem(item) { const response = await projectItems.createProjectItem(item); }; ``` ### createProjectItem (with elevated permissions) ```javascript import { projectItems } from '@wix/portfolio'; import { auth } from '@wix/essentials'; async function myCreateProjectItemMethod(item) { const elevatedCreateProjectItem = auth.elevate(projectItems.createProjectItem); const response = await elevatedCreateProjectItem(item); } ``` ### createProjectItem (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { projectItems } from '@wix/portfolio'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { projectItems }, // Include the auth strategy and host as relevant }); async function createProjectItem(item) { const response = await myWixClient.projectItems.createProjectItem(item); }; ``` ---