workspace_create

POST /orgs/{oid}/workspaces

Creates a new workspace in an organization.

This request is similar to userWorkspace_create

Please refer to workspace for a complete list of all the workspace attributes.

Security Summary

  • Requires Authentication: true
  • Entitlements Required: workspace_create

URI Parameters

  • oid (required): the id of the org

HTTP Request Body Parameters

A workspace object

Example Request

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

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

<ns0:workspace xmlns:ns0="http://www.usharesoft.com/uforge">
        <name>Workspace Example</name>
</ns0:workspace>