-
Notifications
You must be signed in to change notification settings - Fork 8
Workspace
Michael Rybintsev edited this page Aug 8, 2019
·
5 revisions
Workspaces always contains a DocumentLibrary folder that is the root folder from which you can create new documents or folders.
When accessing the User resource, the response will contain the list of workspaces of which the user is member of. Each workspace will advertise a self link, which you can use to GET the workspace. The workspace resource also contains links to the document library, workspace changes and workspace members (see membership).
GET /workspaces/27 HTTP/1.1
Accept: application/vnd.huddle.data+xml
Authorization: OAuth2 frootymcnooty/vonbootycherooty
HTTP/1.1 200 OK
Content-Type: application/vnd.huddle.data+xml
<workspace xmlns="http://schema.huddle.net/2011/02/"
title="Infinite improbability drive"
description="Projects for stealing the infinite improbability drive"
type="shared">
<link rel="self"
href="..." />
<link
rel="documentLibrary"
href="..." />
<link
rel="changes"
href="..." />
<link
rel="workspaceMembers"
href="..." />
<link
rel="permissions"
href="..." />
<link
rel="assignee-approvals"
href="..." />
<settings>
<setting name="CanSync" value="true" />
<setting name="IsManager" value="true" />
<setting name="Status" value="Active" />
</settings>
</workspace>
IN PROGRESS
<workspace xmlns="http://schema.huddle.net/2011/02/"
title="Title is mandatory"
description="Description is optional"
type="shared">
<link rel="self" href="..." />
<link rel="documentLibrary" hef="..." />
<settings>
<setting name="CanSync" value="true" />
<setting name="IsManager" value="true" />
<setting name="Status" value="Active" />
</settings>
</workspace>
Name | Description |
---|---|
title | The title of the workspace |
description | A more complete description of what the workspace is for |
type | 'Shared' is the only valid value |
settings | A list settings that indicate how the workspace has been configured. |
Name | Type | Description |
---|---|---|
CanSync | boolean | Indicates whether the contents of the workspace should be synced locally in its entirety |
IsManager | boolean | Indicates whether the user is a manager of the given workspace |
Status | string | Indicates the current status of the workspace. Possible values are 'Active', 'Locked', 'Deleted' and 'Archived' |
Name | Description | Methods |
---|---|---|
self | The current URI of this workspace. | GET |
documentLibrary | The URI of the root document folder for this workspace. | GET |
permissions | Returns a list of workspace teams | GET |
assignee-approvals | Returns a list of an assignee's approvals in the workspace. See Approvals by Workspace | GET |
start = workspace
workspace = element h:workspace {
attribute title {xsd:string},
attribute description {xsd:string}?,
link+,
settings
}
settings = element h:settings {
setting+
}
setting = element h:setting {
attribute name { xsd:string },
attribute value { xsd:string }
}
- Basic concepts
-
Resources
- Actor
- Approvals
- BulkProcess
- Calendar
- Membership
- Company
- Document
- Document library settings
- Folder
- Paged Folder
- Pins
- Integrations
- Form
- Friends
- Invitation
- Link
- Document Lock
- Folder Lock
- Localisation
- MemberAutocomplete
- Notifications
- Offline item
- PeopleBulkProcess
- Permissions
- Presence
- PublishedDocuments
- Recents
- Recommendations
- Recycle Bin
- Search
- Share
- Tasks (Todos), File Requests, Approvals
- Tasks on Documents
- Actions
- UserApprovals
- User
- VersionHistory
- Workspace
- Workspaces
- SamlPartners
- Logout
- Impersonation
- Administration
- WebHooks