Gets a list of workspaces that the user has access to. The list contains an abbreviated Workspace object for each workspace.
accessApiLevel | number Default: 0 Allows COMMENTER access for inputs and return values. For backwards-compatibility, VIEWER is the default. For example, to see whether a user has COMMENTER access for a sheet, use accessApiLevel=1. |
includeAll | boolean Default: false If true, include all results, that is, do not paginate. Mutually exclusive with page and pageSize (they are ignored if includeAll=true is specified). |
page | number Default: 1 Which page to return. Defaults to 1 if not specified. If you specify a value greater than the total number of pages, you'll receive an empty data set. |
pageSize | number Default: 100 The maximum number of items to return per page. Unless otherwise stated for a specific endpoint, defaults to 100. If only page is specified, defaults to a page size of 100. For reports, the default is 100 rows. If you need larger sets of data from your report, returns a maximum of 10,000 rows per request. |
Authorization | string API Access Token used to authenticate requests to Smartsheet APIs. Example: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789 |
curl https://api.smartsheet.com/2.0/workspaces \ -H "Authorization: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789"
{- "pageNumber": 1,
- "pageSize": 50,
- "totalPages": 25,
- "totalCount": 136,
- "data": [
- {
- "id": 0,
- "name": "string",
- "accessLevel": "ADMIN",
- "permalink": "string"
}
]
}
Creates a new workspace.
accessApiLevel | number Default: 0 Allows COMMENTER access for inputs and return values. For backwards-compatibility, VIEWER is the default. For example, to see whether a user has COMMENTER access for a sheet, use accessApiLevel=1. |
include | string A comma-separated list of elements to include:
|
skipRemap | string A comma-separated list of references to NOT re-map for the newly created folder. |
Authorization | string API Access Token used to authenticate requests to Smartsheet APIs. Example: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789 |
Content-Type | string Default: application/json Required for POST and PUT requests. Defines the structure for the request body. |
Workspace to create.
id | number Workspace Id. |
name | string Workspace name. |
accessLevel | string Enum: "ADMIN" "COMMENTER" "EDITOR" "EDITOR_SHARE" "OWNER" "VIEWER" |
permalink | string URL that represents a direct link to the workspace in Smartsheet. |
{- "id": 0,
- "name": "string",
- "accessLevel": "ADMIN",
- "permalink": "string"
}
{- "message": "SUCCESS",
- "resultCode": 0,
- "data": {
- "id": 0,
- "name": "string",
- "accessLevel": "ADMIN",
- "permalink": "string"
}
}
Gets a Workspace object.
workspaceId required | string WorkspaceID of the worksheet being accessed. |
accessApiLevel | number Default: 0 Allows COMMENTER access for inputs and return values. For backwards-compatibility, VIEWER is the default. For example, to see whether a user has COMMENTER access for a sheet, use accessApiLevel=1. |
include | string A comma-separated list of optional elements to include in the response:
|
Authorization | string API Access Token used to authenticate requests to Smartsheet APIs. Example: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789 |
curl https://api.smartsheet.com/2.0/workspaces/{workspaceid} \ -H "Authorization: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789"
{- "id": 0,
- "name": "string",
- "accessLevel": "ADMIN",
- "permalink": "string"
}
Deletes a workspace.
workspaceId required | string WorkspaceID of the worksheet being accessed. |
Authorization | string API Access Token used to authenticate requests to Smartsheet APIs. Example: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789 |
curl https://api.smartsheet.com/2.0/workspaces/7960873114331012 \ -H "Authorization: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789" \ -X DELETE
{- "message": "SUCCESS",
- "resultCode": 0
}
Updates a workspace.
workspaceId required | string WorkspaceID of the worksheet being accessed. |
accessApiLevel | number Default: 0 Allows COMMENTER access for inputs and return values. For backwards-compatibility, VIEWER is the default. For example, to see whether a user has COMMENTER access for a sheet, use accessApiLevel=1. |
Authorization | string API Access Token used to authenticate requests to Smartsheet APIs. Example: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789 |
name | string Workspace name. |
{- "name": "string"
}
{- "version": 0,
- "failedItems": [
- {
- "rowId": 0,
- "error": {
- "refId": "string",
- "errorCode": 0,
- "message": "string"
}, - "index": 0
}
], - "message": "SUCCESS",
- "resultCode": 0,
- "result": {
- "id": 0,
- "name": "string",
- "accessLevel": "ADMIN",
- "permalink": "string"
}
}
Copies a workspace.
workspaceId required | string WorkspaceID of the worksheet being accessed. |
include | string A comma-separated list of elements to include:
|
skipRemap | string A comma-separated list of references to NOT re-map for the newly created folder. |
Authorization | string API Access Token used to authenticate requests to Smartsheet APIs. Example: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789 |
Content-Type | string Default: application/json Required for POST and PUT requests. Defines the structure for the request body. |
New workspace name.
destinationId | number The Id of the destination container (when copying or moving a sheet or a folder). Required if destinationType is "folder" or "workspace". If destinationType is "home", this value must be null. |
destinationType | string Nullable Type of the destination container. |
newName | string Name of the newly created object (when creating a copy of a dashboard, folder, sheet, or workspace). This attribute is not supported for "move" operations. |
{- "destinationId": 0,
- "destinationType": "folder",
- "newName": "string"
}
{- "destinationId": 0,
- "destinationType": "folder",
- "newName": "string"
}
Gets a workspace's folders.
workspaceId required | string WorkspaceID of the worksheet being accessed. |
includeAll | boolean Default: false If true, include all results, that is, do not paginate. Mutually exclusive with page and pageSize (they are ignored if includeAll=true is specified). |
page | number Default: 1 Which page to return. Defaults to 1 if not specified. If you specify a value greater than the total number of pages, you'll receive an empty data set. |
pageSize | number Default: 100 The maximum number of items to return per page. Unless otherwise stated for a specific endpoint, defaults to 100. If only page is specified, defaults to a page size of 100. For reports, the default is 100 rows. If you need larger sets of data from your report, returns a maximum of 10,000 rows per request. |
Authorization | string API Access Token used to authenticate requests to Smartsheet APIs. Example: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789 |
curl https://api.smartsheet.com/2.0/workspaces/{workspaceId}/folders \ -H "Authorization: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789" \ -H "Content-Type: application/json"
{- "pageNumber": 1,
- "pageSize": 50,
- "totalPages": 25,
- "totalCount": 136,
- "result": [
- {
- "id": 0,
- "favorite": true,
- "folders": [
- { }
], - "name": "string",
- "permalink": "string",
- "reports": [
- {
- "scope": {
- "sheets": [
- {
- "id": 0,
- "fromId": 0,
- "ownerId": 0,
- "accessLevel": "ADMIN",
- "attachments": [
- {
- "id": 0,
- "parentId": 0,
- "attachmentType": "BOX_COM",
- "attachmentSubType": "DOCUMENT",
- "mimeType": "PNG",
- "parentType": "COMMENT",
- "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "name": "string",
- "sizeInKb": 0,
- "url": "string",
- "urlExpiresInMillis": 0
}
], - "cellImageUploadEnabled": true,
- "columns": [
- {
- "autoNumberFormat": {
- "fill": "string",
- "prefix": "string",
- "startingNumber": 0,
- "suffix": "string"
}, - "contactOptions": [
- {
- "email": null,
- "name": null
}
], - "description": "string",
- "format": "string",
- "formula": "string",
- "hidden": true,
- "id": 0,
- "index": 0,
- "locked": true,
- "lockedForUser": true,
- "options": [
- "string"
], - "primary": true,
- "symbol": "string",
- "systemColumnType": "AUTO_NUMBER",
- "tags": [
- "CALENDAR_END_DATE"
], - "title": "string",
- "type": "ABSTRACT_DATETIME",
- "validation": true,
- "version": 0,
- "width": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "crossSheetReferences": [
- {
- "endColumnId": 0,
- "endRowId": 0,
- "id": 0,
- "name": "string",
- "startColumnId": 0,
- "startRowId": 0,
- "status": "BLOCKED",
- "sourceSheetId": 0
}
], - "dependenciesEnabled": true,
- "discussions": [
- {
- "accessLevel": "ADMIN",
- "id": 0,
- "comments": [
- {
- "attachments": [ ],
- "createdAt": null,
- "createdBy": { },
- "discussionId": null,
- "id": null,
- "modifiedAt": null,
- "text": null
}
], - "commentAttachments": [
- {
- "id": null,
- "parentId": null,
- "attachmentType": null,
- "attachmentSubType": null,
- "mimeType": null,
- "parentType": null,
- "createdAt": null,
- "createdBy": null,
- "name": null,
- "sizeInKb": null,
- "url": null,
- "urlExpiresInMillis": null
}
], - "commentCount": 0,
- "createdBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "lastCommentedAt": "2019-08-24T14:15:22Z",
- "lastCommentedUser": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "parentId": 0,
- "parentType": "ROW",
- "readOnly": true,
- "title": "string"
}
], - "effectiveAttachmentOptions": [
- "string"
], - "favorite": true,
- "ganttEnabled": true,
- "hasSummaryFields": true,
- "isMultiPicklistEnabled": true,
- "modifiedAt": "2019-08-24T14:15:22Z",
- "name": "string",
- "owner": "string",
- "permalink": "string",
- "projectSettings": {
- "lengthOfDay": 1,
- "nonWorkingDays": [
- "2019-08-24"
], - "workingDays": [
- "MONDAY"
]
}, - "readOnly": true,
- "resourceManagementEnabled": true,
- "resourceManagementType": "NONE",
- "rows": [
- {
- "id": 0,
- "sheetId": 0,
- "siblingId": 0,
- "accessLevel": "ADMIN",
- "attachments": [
- {
- "id": null,
- "parentId": null,
- "attachmentType": null,
- "attachmentSubType": null,
- "mimeType": null,
- "parentType": null,
- "createdAt": null,
- "createdBy": null,
- "name": null,
- "sizeInKb": null,
- "url": null,
- "urlExpiresInMillis": null
}
], - "cells": [
- {
- "columnId": null,
- "columnType": null,
- "conditionalFormat": null,
- "displayValue": null,
- "format": null,
- "formula": null,
- "hyperlink": null,
- "image": null,
- "linkInFromCell": null,
- "linksOutToCells": [ ],
- "objectValue": null,
- "overrideValidation": null,
- "strict": null,
- "value": null
}
], - "columns": [
- {
- "autoNumberFormat": null,
- "contactOptions": [ ],
- "description": null,
- "format": null,
- "formula": null,
- "hidden": null,
- "id": null,
- "index": null,
- "locked": null,
- "lockedForUser": null,
- "options": [ ],
- "primary": null,
- "symbol": null,
- "systemColumnType": null,
- "tags": [ ],
- "title": null,
- "type": null,
- "validation": null,
- "version": null,
- "width": null
}
], - "conditionalFormat": ",,1,1,,,,,,,,,,,,,",
- "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "discussions": [
- {
- "accessLevel": null,
- "id": null,
- "comments": [ ],
- "commentAttachments": [ ],
- "commentCount": null,
- "createdBy": null,
- "lastCommentedAt": null,
- "lastCommentedUser": null,
- "parentId": null,
- "parentType": null,
- "readOnly": null,
- "title": null
}
], - "proofs": {
- "id": 0,
- "originalId": 0,
- "name": "string",
- "proofType": "DOCUMENT",
- "proofRequestUrl": "string",
- "version": 0,
- "lastUpdatedAt": "2019-08-24T14:15:22Z",
- "lastUpdatedBy": {
- "email": null,
- "name": null
}, - "isCompleted": true,
- "attachments": [
- null
], - "discussions": [
- null
]
}, - "expanded": true,
- "filteredOut": true,
- "format": ",,1,1,,,,,,,,,,,,,",
- "inCriticalPath": true,
- "locked": true,
- "lockedForUser": true,
- "modifiedAt": "2019-08-24T14:15:22Z",
- "modifiedBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "permaLink": "string",
- "rowNumber": 1,
- "version": 0
}
], - "showParentRowsForFilters": true,
- "source": {
- "id": 0,
- "type": "string"
}, - "summary": {
- "fields": [
- {
- "id": 0,
- "contactOptions": [
- null
], - "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": null,
- "name": null
}, - "displayValue": "string",
- "format": "string",
- "formula": "string",
- "hyperlink": {
- "reportId": null,
- "sheetId": null,
- "sightId": null,
- "url": null
}, - "image": {
- "altText": null,
- "height": null,
- "id": null,
- "width": null
}, - "index": 0,
- "locked": true,
- "lockedForUser": true,
- "modifiedAt": "2019-08-24T14:15:22Z",
- "modifiedBy": {
- "email": null,
- "name": null
}, - "objectValue": {
- "objectType": null
}, - "options": [
- null
], - "symbol": "string",
- "title": "string",
- "type": "ABSTRACT_DATETIME",
- "validation": true
}
]
}, - "totalRowCount": 0,
- "userPermissions": {
- "summaryPermissions": "ADMIN"
}, - "userSettings": {
- "criticalPathEnabled": true,
- "displaySummaryTasks": true
}, - "version": 0,
- "workspace": {
- "id": 0,
- "name": "string",
- "accessLevel": "ADMIN",
- "permalink": "string"
}
}
], - "workspaces": [
- {
- "id": 0,
- "name": "string",
- "accessLevel": "ADMIN",
- "permalink": "string"
}
]
}, - "sourceSheets": [
- {
- "id": 0,
- "fromId": 0,
- "ownerId": 0,
- "accessLevel": "ADMIN",
- "attachments": [
- {
- "id": 0,
- "parentId": 0,
- "attachmentType": "BOX_COM",
- "attachmentSubType": "DOCUMENT",
- "mimeType": "PNG",
- "parentType": "COMMENT",
- "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "name": "string",
- "sizeInKb": 0,
- "url": "string",
- "urlExpiresInMillis": 0
}
], - "cellImageUploadEnabled": true,
- "columns": [
- {
- "autoNumberFormat": {
- "fill": "string",
- "prefix": "string",
- "startingNumber": 0,
- "suffix": "string"
}, - "contactOptions": [
- {
- "email": "string",
- "name": "string"
}
], - "description": "string",
- "format": "string",
- "formula": "string",
- "hidden": true,
- "id": 0,
- "index": 0,
- "locked": true,
- "lockedForUser": true,
- "options": [
- "string"
], - "primary": true,
- "symbol": "string",
- "systemColumnType": "AUTO_NUMBER",
- "tags": [
- "CALENDAR_END_DATE"
], - "title": "string",
- "type": "ABSTRACT_DATETIME",
- "validation": true,
- "version": 0,
- "width": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "crossSheetReferences": [
- {
- "endColumnId": 0,
- "endRowId": 0,
- "id": 0,
- "name": "string",
- "startColumnId": 0,
- "startRowId": 0,
- "status": "BLOCKED",
- "sourceSheetId": 0
}
], - "dependenciesEnabled": true,
- "discussions": [
- {
- "accessLevel": "ADMIN",
- "id": 0,
- "comments": [
- {
- "attachments": [
- null
], - "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": null,
- "name": null
}, - "discussionId": 0,
- "id": 0,
- "modifiedAt": "2019-08-24T14:15:22Z",
- "text": "string"
}
], - "commentAttachments": [
- {
- "id": 0,
- "parentId": 0,
- "attachmentType": "BOX_COM",
- "attachmentSubType": "DOCUMENT",
- "mimeType": "PNG",
- "parentType": "COMMENT",
- "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": null,
- "name": null
}, - "name": "string",
- "sizeInKb": 0,
- "url": "string",
- "urlExpiresInMillis": 0
}
], - "commentCount": 0,
- "createdBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "lastCommentedAt": "2019-08-24T14:15:22Z",
- "lastCommentedUser": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "parentId": 0,
- "parentType": "ROW",
- "readOnly": true,
- "title": "string"
}
], - "effectiveAttachmentOptions": [
- "string"
], - "favorite": true,
- "ganttEnabled": true,
- "hasSummaryFields": true,
- "isMultiPicklistEnabled": true,
- "modifiedAt": "2019-08-24T14:15:22Z",
- "name": "string",
- "owner": "string",
- "permalink": "string",
- "projectSettings": {
- "lengthOfDay": 1,
- "nonWorkingDays": [
- "2019-08-24"
], - "workingDays": [
- "MONDAY"
]
}, - "readOnly": true,
- "resourceManagementEnabled": true,
- "resourceManagementType": "NONE",
- "rows": [
- {
- "id": 0,
- "sheetId": 0,
- "siblingId": 0,
- "accessLevel": "ADMIN",
- "attachments": [
- {
- "id": 0,
- "parentId": 0,
- "attachmentType": "BOX_COM",
- "attachmentSubType": "DOCUMENT",
- "mimeType": "PNG",
- "parentType": "COMMENT",
- "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": null,
- "name": null
}, - "name": "string",
- "sizeInKb": 0,
- "url": "string",
- "urlExpiresInMillis": 0
}
], - "cells": [
- {
- "columnId": 0,
- "columnType": "string",
- "conditionalFormat": "string",
- "displayValue": "string",
- "format": "string",
- "formula": "string",
- "hyperlink": {
- "reportId": null,
- "sheetId": null,
- "sightId": null,
- "url": null
}, - "image": {
- "altText": null,
- "height": null,
- "id": null,
- "width": null
}, - "linkInFromCell": {
- "columnId": null,
- "rowId": null,
- "sheetId": null,
- "sheetName": null,
- "status": null
}, - "linksOutToCells": [
- null
], - "objectValue": {
- "objectType": null
}, - "overrideValidation": true,
- "strict": true,
- "value": "string"
}
], - "columns": [
- {
- "autoNumberFormat": {
- "fill": null,
- "prefix": null,
- "startingNumber": null,
- "suffix": null
}, - "contactOptions": [
- null
], - "description": "string",
- "format": "string",
- "formula": "string",
- "hidden": true,
- "id": 0,
- "index": 0,
- "locked": true,
- "lockedForUser": true,
- "options": [
- null
], - "primary": true,
- "symbol": "string",
- "systemColumnType": "AUTO_NUMBER",
- "tags": [
- null
], - "title": "string",
- "type": "ABSTRACT_DATETIME",
- "validation": true,
- "version": 0,
- "width": 0
}
], - "conditionalFormat": ",,1,1,,,,,,,,,,,,,",
- "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "discussions": [
- {
- "accessLevel": "ADMIN",
- "id": 0,
- "comments": [
- null
], - "commentAttachments": [
- null
], - "commentCount": 0,
- "createdBy": {
- "email": null,
- "name": null
}, - "lastCommentedAt": "2019-08-24T14:15:22Z",
- "lastCommentedUser": {
- "email": null,
- "name": null
}, - "parentId": 0,
- "parentType": "ROW",
- "readOnly": true,
- "title": "string"
}
], - "proofs": {
- "id": 0,
- "originalId": 0,
- "name": "string",
- "proofType": "DOCUMENT",
- "proofRequestUrl": "string",
- "version": 0,
- "lastUpdatedAt": "2019-08-24T14:15:22Z",
- "lastUpdatedBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "isCompleted": true,
- "attachments": [
- {
- "id": null,
- "parentId": null,
- "attachmentType": null,
- "attachmentSubType": null,
- "mimeType": null,
- "parentType": null,
- "createdAt": null,
- "createdBy": null,
- "name": null,
- "sizeInKb": null,
- "url": null,
- "urlExpiresInMillis": null
}
], - "discussions": [
- {
- "accessLevel": null,
- "id": null,
- "comments": [ ],
- "commentAttachments": [ ],
- "commentCount": null,
- "createdBy": null,
- "lastCommentedAt": null,
- "lastCommentedUser": null,
- "parentId": null,
- "parentType": null,
- "readOnly": null,
- "title": null
}
]
}, - "expanded": true,
- "filteredOut": true,
- "format": ",,1,1,,,,,,,,,,,,,",
- "inCriticalPath": true,
- "locked": true,
- "lockedForUser": true,
- "modifiedAt": "2019-08-24T14:15:22Z",
- "modifiedBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "permaLink": "string",
- "rowNumber": 1,
- "version": 0
}
], - "showParentRowsForFilters": true,
- "source": {
- "id": 0,
- "type": "string"
}, - "summary": {
- "fields": [
- {
- "id": 0,
- "contactOptions": [
- {
- "email": null,
- "name": null
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "displayValue": "string",
- "format": "string",
- "formula": "string",
- "hyperlink": {
- "reportId": 0,
- "sheetId": 0,
- "sightId": 0,
- "url": "string"
}, - "image": {
- "altText": "string",
- "height": 0,
- "id": "string",
- "width": 0
}, - "index": 0,
- "locked": true,
- "lockedForUser": true,
- "modifiedAt": "2019-08-24T14:15:22Z",
- "modifiedBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "objectValue": {
- "objectType": "ABSTRACT_DATETIME"
}, - "options": [
- "string"
], - "symbol": "string",
- "title": "string",
- "type": "ABSTRACT_DATETIME",
- "validation": true
}
]
}, - "totalRowCount": 0,
- "userPermissions": {
- "summaryPermissions": "ADMIN"
}, - "userSettings": {
- "criticalPathEnabled": true,
- "displaySummaryTasks": true
}, - "version": 0,
- "workspace": {
- "id": 0,
- "name": "string",
- "accessLevel": "ADMIN",
- "permalink": "string"
}
}
], - "isSummaryReport": true,
- "proofs": {
- "id": 0,
- "originalId": 0,
- "name": "string",
- "type": "DOCUMENT",
- "documentType": "PDF",
- "proofRequestUrl": "string",
- "version": 0,
- "lastUpdatedAt": "2019-08-24T14:15:22Z",
- "lastUpdatedBy": {
- "email": "jane.doe@smartsheet.com",
- "name": "Jane Doe"
}, - "isCompleted": true
}, - "id": 0,
- "fromId": 0,
- "ownerId": 0,
- "accessLevel": "ADMIN",
- "attachments": [
- {
- "id": 0,
- "parentId": 0,
- "attachmentType": "BOX_COM",
- "attachmentSubType": "DOCUMENT",
- "mimeType": "PNG",
- "parentType": "COMMENT",
- "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": null,
- "name": null
}, - "name": "string",
- "sizeInKb": 0,
- "url": "string",
- "urlExpiresInMillis": 0
}
], - "cellImageUploadEnabled": true,
- "columns": [
- {
- "autoNumberFormat": {
- "fill": null,
- "prefix": null,
- "startingNumber": null,
- "suffix": null
}, - "contactOptions": [
- null
], - "description": "string",
- "format": "string",
- "formula": "string",
- "hidden": true,
- "id": 0,
- "index": 0,
- "locked": true,
- "lockedForUser": true,
- "options": [
- null
], - "primary": true,
- "symbol": "string",
- "systemColumnType": "AUTO_NUMBER",
- "tags": [
- null
], - "title": "string",
- "type": "ABSTRACT_DATETIME",
- "validation": true,
- "version": 0,
- "width": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "crossSheetReferences": [
- {
- "endColumnId": 0,
- "endRowId": 0,
- "id": 0,
- "name": "string",
- "startColumnId": 0,
- "startRowId": 0,
- "status": "BLOCKED",
- "sourceSheetId": 0
}
], - "dependenciesEnabled": true,
- "discussions": [
- {
- "accessLevel": "ADMIN",
- "id": 0,
- "comments": [
- null
], - "commentAttachments": [
- null
], - "commentCount": 0,
- "createdBy": {
- "email": null,
- "name": null
}, - "lastCommentedAt": "2019-08-24T14:15:22Z",
- "lastCommentedUser": {
- "email": null,
- "name": null
}, - "parentId": 0,
- "parentType": "ROW",
- "readOnly": true,
- "title": "string"
}
], - "effectiveAttachmentOptions": [
- "string"
], - "favorite": true,
- "ganttEnabled": true,
- "hasSummaryFields": true,
- "isMultiPicklistEnabled": true,
- "modifiedAt": "2019-08-24T14:15:22Z",
- "name": "string",
- "owner": "string",
- "permalink": "string",
- "projectSettings": {
- "lengthOfDay": 1,
- "nonWorkingDays": [
- "2019-08-24"
], - "workingDays": [
- "MONDAY"
]
}, - "readOnly": true,
- "resourceManagementEnabled": true,
- "resourceManagementType": "NONE",
- "rows": [
- {
- "id": 0,
- "sheetId": 0,
- "siblingId": 0,
- "accessLevel": "ADMIN",
- "attachments": [
- null
], - "cells": [
- null
], - "columns": [
- null
], - "conditionalFormat": ",,1,1,,,,,,,,,,,,,",
- "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": null,
- "name": null
}, - "discussions": [
- null
], - "proofs": {
- "id": null,
- "originalId": null,
- "name": null,
- "proofType": null,
- "proofRequestUrl": null,
- "version": null,
- "lastUpdatedAt": null,
- "lastUpdatedBy": null,
- "isCompleted": null,
- "attachments": [ ],
- "discussions": [ ]
}, - "expanded": true,
- "filteredOut": true,
- "format": ",,1,1,,,,,,,,,,,,,",
- "inCriticalPath": true,
- "locked": true,
- "lockedForUser": true,
- "modifiedAt": "2019-08-24T14:15:22Z",
- "modifiedBy": {
- "email": null,
- "name": null
}, - "permaLink": "string",
- "rowNumber": 1,
- "version": 0
}
], - "showParentRowsForFilters": true,
- "source": {
- "id": 0,
- "type": "string"
}, - "summary": {
- "fields": [
- {
- "id": null,
- "contactOptions": [ ],
- "createdAt": null,
- "createdBy": { },
- "displayValue": null,
- "format": null,
- "formula": null,
- "hyperlink": null,
- "image": null,
- "index": null,
- "locked": null,
- "lockedForUser": null,
- "modifiedAt": null,
- "modifiedBy": { },
- "objectValue": null,
- "options": [ ],
- "symbol": null,
- "title": null,
- "type": null,
- "validation": null
}
]
}, - "totalRowCount": 0,
- "userPermissions": {
- "summaryPermissions": "ADMIN"
}, - "userSettings": {
- "criticalPathEnabled": true,
- "displaySummaryTasks": true
}, - "version": 0,
- "workspace": {
- "id": 0,
- "name": "string",
- "accessLevel": "ADMIN",
- "permalink": "string"
}
}
], - "sheets": [
- {
- "id": 0,
- "fromId": 0,
- "ownerId": 0,
- "accessLevel": "ADMIN",
- "attachments": [
- {
- "id": 0,
- "parentId": 0,
- "attachmentType": "BOX_COM",
- "attachmentSubType": "DOCUMENT",
- "mimeType": "PNG",
- "parentType": "COMMENT",
- "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": null,
- "name": null
}, - "name": "string",
- "sizeInKb": 0,
- "url": "string",
- "urlExpiresInMillis": 0
}
], - "cellImageUploadEnabled": true,
- "columns": [
- {
- "autoNumberFormat": {
- "fill": null,
- "prefix": null,
- "startingNumber": null,
- "suffix": null
}, - "contactOptions": [
- null
], - "description": "string",
- "format": "string",
- "formula": "string",
- "hidden": true,
- "id": 0,
- "index": 0,
- "locked": true,
- "lockedForUser": true,
- "options": [
- null
], - "primary": true,
- "symbol": "string",
- "systemColumnType": "AUTO_NUMBER",
- "tags": [
- null
], - "title": "string",
- "type": "ABSTRACT_DATETIME",
- "validation": true,
- "version": 0,
- "width": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "crossSheetReferences": [
- {
- "endColumnId": 0,
- "endRowId": 0,
- "id": 0,
- "name": "string",
- "startColumnId": 0,
- "startRowId": 0,
- "status": "BLOCKED",
- "sourceSheetId": 0
}
], - "dependenciesEnabled": true,
- "discussions": [
- {
- "accessLevel": "ADMIN",
- "id": 0,
- "comments": [
- null
], - "commentAttachments": [
- null
], - "commentCount": 0,
- "createdBy": {
- "email": null,
- "name": null
}, - "lastCommentedAt": "2019-08-24T14:15:22Z",
- "lastCommentedUser": {
- "email": null,
- "name": null
}, - "parentId": 0,
- "parentType": "ROW",
- "readOnly": true,
- "title": "string"
}
], - "effectiveAttachmentOptions": [
- "string"
], - "favorite": true,
- "ganttEnabled": true,
- "hasSummaryFields": true,
- "isMultiPicklistEnabled": true,
- "modifiedAt": "2019-08-24T14:15:22Z",
- "name": "string",
- "owner": "string",
- "permalink": "string",
- "projectSettings": {
- "lengthOfDay": 1,
- "nonWorkingDays": [
- "2019-08-24"
], - "workingDays": [
- "MONDAY"
]
}, - "readOnly": true,
- "resourceManagementEnabled": true,
- "resourceManagementType": "NONE",
- "rows": [
- {
- "id": 0,
- "sheetId": 0,
- "siblingId": 0,
- "accessLevel": "ADMIN",
- "attachments": [
- null
], - "cells": [
- null
], - "columns": [
- null
], - "conditionalFormat": ",,1,1,,,,,,,,,,,,,",
- "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "email": null,
- "name": null
}, - "discussions": [
- null
], - "proofs": {
- "id": null,
- "originalId": null,
- "name": null,
- "proofType": null,
- "proofRequestUrl": null,
- "version": null,
- "lastUpdatedAt": null,
- "lastUpdatedBy": null,
- "isCompleted": null,
- "attachments": [ ],
- "discussions": [ ]
}, - "expanded": true,
- "filteredOut": true,
- "format": ",,1,1,,,,,,,,,,,,,",
- "inCriticalPath": true,
- "locked": true,
- "lockedForUser": true,
- "modifiedAt": "2019-08-24T14:15:22Z",
- "modifiedBy": {
- "email": null,
- "name": null
}, - "permaLink": "string",
- "rowNumber": 1,
- "version": 0
}
], - "showParentRowsForFilters": true,
- "source": {
- "id": 0,
- "type": "string"
}, - "summary": {
- "fields": [
- {
- "id": null,
- "contactOptions": [ ],
- "createdAt": null,
- "createdBy": { },
- "displayValue": null,
- "format": null,
- "formula": null,
- "hyperlink": null,
- "image": null,
- "index": null,
- "locked": null,
- "lockedForUser": null,
- "modifiedAt": null,
- "modifiedBy": { },
- "objectValue": null,
- "options": [ ],
- "symbol": null,
- "title": null,
- "type": null,
- "validation": null
}
]
}, - "totalRowCount": 0,
- "userPermissions": {
- "summaryPermissions": "ADMIN"
}, - "userSettings": {
- "criticalPathEnabled": true,
- "displaySummaryTasks": true
}, - "version": 0,
- "workspace": {
- "id": 0,
- "name": "string",
- "accessLevel": "ADMIN",
- "permalink": "string"
}
}
], - "sights": [
- {
- "backgroundColor": "string",
- "defaultWidgetBackgroundColor": "string",
- "columnCount": 0,
- "favorite": true,
- "source": {
- "id": 0,
- "type": "string"
}, - "widgets": [
- {
- "id": 0,
- "type": "CHART",
- "contents": {
- "type": "CHART",
- "reportId": 0,
- "sheetId": 0,
- "axes": [
- {
- "location": "BOTTOM",
- "title": "string",
- "titleInfo": {
- "type": "ABSTRACT_DATE_TIME"
}, - "axisTitleFont": "Arial",
- "axisLabelFormat": ",,,,,,,,36,,,,,,,,",
- "axisLabelFont": "Arial",
- "includeZero": true
}
], - "hyperlink": {
- "interactionType": "DISTI_COPY",
- "folderId": 0,
- "reportId": 0,
- "sheetId": 0,
- "sightId": 0,
- "url": "string",
- "workspaceId": 0
}, - "includedColumnIds": [
- 0
], - "legend": {
- "location": "BOTTOM",
- "legendFormat": ",,1,1,,,,,,,,,,,,,",
- "legendFont": "Arial"
}, - "selectionRanges": [
- {
- "sourceColumnId1": 0,
- "sourceColumnId2": 0,
- "sourceRowId1": 0,
- "sourceRowId2": 0
}
], - "series": [
- {
- "title": "string",
- "titleInfo": {
- "type": "ABSTRACT_DATE_TIME"
}, - "seriesTitleFormat": "string",
- "seriesType": "AREA",
- "dataLabels": {
- "labelType": "NONE"
}, - "tooltips": {
- "labelType": "NONE"
}, - "lineType": "CURVED",
- "holeSize": 0,
- "isFilled": true,
- "isHalf": true,
- "isStacked": true,
- "xFormat": ",,1,1,,,,,,,,,,,,,",
- "yFormat": ",,1,1,,,,,,,,,,,,,",
- "color": "string",
- "axisLocationX": "BOTTOM",
- "axisLocationY": "BOTTOM",
- "yColumnInfo": {
- "type": "ABSTRACT_DATE_TIME"
}, - "xColumnInfo": {
- "type": "ABSTRACT_DATE_TIME"
}, - "seriesSelectionOrder": "COLUMNS",
- "seriesData": [
- {
- "x": null,
- "y": null,
- "xFormat": null,
- "yFormat": null,
- "color": null
}
], - "selectionRanges": [
- {
- "sourceColumnId1": null,
- "sourceColumnId2": null,
- "sourceRowId1": null,
- "sourceRowId2": null
}
]
}
], - "verticalGridLines": {
- "lineStyle": "SOLID"
}, - "horizontalGridLines": {
- "lineStyle": "SOLID"
}
}, - "height": 0,
- "showTitle": true,
- "showTitleIcon": true,
- "title": "string",
- "titleFormat": ",,1,,,,,,,3,,,,,,1,",
- "titleFont": "Arial",
- "version": 0,
- "viewMode": 1,
- "width": 0,
- "xPosition": 0,
- "yPosition": 0
}
], - "workspace": {
- "id": 0,
- "name": "string",
- "accessLevel": "ADMIN",
- "permalink": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "id": 0,
- "accessLevel": "ADMIN",
- "permalink": "string",
- "name": "string"
}
], - "templates": [
- {
- "id": 0,
- "type": "report",
- "accessLevel": "ADMIN",
- "blank": true,
- "categories": [
- "string"
], - "description": "string",
- "globalTemplate": "BLANK_SHEET",
- "image": "string",
- "largeImage": "string",
- "locale": "ar_AE",
- "name": "Awesome Project Template",
- "tags": [
- "string"
]
}
]
}
]
}
Creates a new folder.
workspaceId required | string WorkspaceID of the worksheet being accessed. |
Authorization | string API Access Token used to authenticate requests to Smartsheet APIs. Example: Bearer JKlMNOpQ12RStUVwxYZAbcde3F5g6hijklM789 |
Content-Type | string Default: application/json Required for POST and PUT requests. Defines the structure for the request body. |
Folder to create.
name | string Folder name. |
{- "name": "string"
}
{- "message": "SUCCESS",
- "resultCode": 0,
- "result": {
- "name": "string"
}
}