Creates a new project.
Syntax
IpsUser
IpsAdmin
IpsCompanyAdmin
ImagePortalAdmin
ImagePortalContrib
ImagePortalContribUser
Input (createProjectParam)
Name | Type | Required | Description |
---|---|---|---|
companyHandle | xsd:string |
Yes | The handle of the company associated with the new project. |
projectName | xsd:string |
Yes | New project name. |
Output (createProjectParam)
Name | Type | Required | Description |
---|---|---|---|
projectHandle | xsd:string |
Yes | The handle to the new project. |
This code sample creates a project called ApiTestProject
in a company specified by its handle. The response returns the handle to the project.
Request
<createProjectParam xmlns="http://www.scene7.com/IpsApi/xsd/2008-01-15">
<companyHandle>c|6</companyHandle>
<projectName>ApiTestProject</projectName>
</createProjectParam>
<createProjectReturn xmlns="http://www.scene7.com/IpsApi/xsd/2008-01-15">
<projectHandle>p|6|ApiTestProject</projectHandle>
</createProjectReturn>