project_create

POST /orgs/{oid}/projects

Create a new project in the Project Catalog.

Please refer to project for a complete list of all the software bundle attributes.

Security Summary

  • Requires Authentication: true
  • Entitlements Required: software_upload

URI Parameters

  • oid (required): the id of the org

HTTP Request Body Parameters

A project object

Example Request

curl "https://uforge.example.com/api/orgs/{oid}/projects" -X POST \
-u USER_LOGIN:PASSWORD -H "Accept: application/xml" --data-binary "@representation.xml"

Example of representation.xml content (the request body):

<ns0:project xmlns:ns0="http://www.usharesoft.com/uforge">
        <category>
                <name>Blogging</name>
        </category>
        <company>
                <name>Maintainer Example</name>
        </company>
        <distributionUri>distributions/1</distributionUri>
        <license>
                <type>Custom</type>
        </license>
        <name>Project Example</name>
        <version>1.0</version>
        <shortTag>project</shortTag>
</ns0:project>