Newer Version Available

This content describes an older version of this product. View Latest

Dataset Resource

Returns the Wave Analytics dataset with the specified ID, deletes a dataset (DELETE), or updates a dataset (PATCH).
Resource URL
1/wave/datasets/<dataset ID>
Formats
JSON
Available Version
36.0
HTTP Methods
GET, DELETE, and PATCH
PATCH Request Body
Property Name Type Description Required or Optional Available Version
currentVersionId ID The 18-character ID of the current version of this dataset. Optional 36.0
description String The description of the dataset. Optional 36.0
folder ID The 18-character ID of the folder that contains the dataset. For example:
1"folder": {
2  "id":"005xx000001SwTWAA0"
3}
To patch the folder, you must have edit access to the current and new folders.
Optional 36.0
label String The label of the dataset. Optional 36.0
name String The name of the dataset.

Patching of developer names for datasets is not allowed. Dataflows reference datasets by using their developer names, and changing names can lead to broken dataflows.

Note

Optional 36.0
userXmd XmdInputRepresentation User XMD associated with this dataset. Optional 38.0
GET and PATCH Response Body
Property Name Type Description Filter Group and Version Available Version
assetSharingUrl String The URL for opening this asset in the Wave builder. This is a form of deep linking. The server examines the link parameters, which might include urlType, assetId, orgId, and loginHost, as well as other optional parameters, and translates as necessary to produce the correct result on the target client. For example, it will open the wave dashboard on desktop clients, or mobile if you are on a mobile OS. For example, the shared URL:
1http://{host}/​analytics/​application/​005xx000001SvSwAAK?​urlType=sharing&​orgId=00DT0000000Dpvc&​loginHost=​https%3A%2F%2F​test.my.salesforce.com
Might produce the following web Url:
1http://{host}/​insights/​web/​explore.apexp#​application/​005xx000001SvSwAAK
Or it might produce the following Url on iOS:
1com.salesforce.kona://​application/​005xx000001SvSwAAK&​orgId=00DT0000000Dpvc&​loginHost=​https%3A%2F%2F​test.my.salesforce.com
Small, 36.0 36.0
createdBy Wave User The creator of the dataset. Small, 36.0 36.0
createdDate Date The time at which the dataset was created, in ISO8601 date format. Small, 36.0 36.0
currentVersionCreatedBy Wave User The creator of the current version of the dataset. Only returned if the filterGroup input parameter is set to Supplemental. Supplemental, 36.0 36.0
currentVersionCreatedDate Date The time at which the current version of the dataset was created, in ISO8601 date format. Only returned if the filterGroup input parameter is set to Supplemental. Supplemental, 36.0 36.0
currentVersionId ID The 18-character ID of the current dataset version. Small, 36.0 36.0
currentVersionLastModifiedBy Wave User The user who last updated the current version of the dataset. Only returned if the filterGroup input parameter is set to Supplemental. Supplemental, 36.0 36.0
currentVersionLastModifiedDate Date The last time the current version of the dataset was modified, in ISO8601 date format. Only returned if the filterGroup input parameter is set to Supplemental. Supplemental, 36.0 36.0
currentVersionUrl String The URL for the current dataset version. Small, 36.0 36.0
description String Short description of the asset. Small, 36.0 36.0
folder Asset​Reference​Representation A reference to the folder in which this dataset is stored. Small, 36.0 36.0
id ID The 18-character ID of the dataset. Small, 36.0 36.0
label String The label of the dataset. Small, 36.0 36.0
lastAccessedDate Date The last time the dataset was accessed, in ISO8601 date format. Small, 36.0 36.0
lastModifiedBy Wave User The user who last updated the dataset. Small, 36.0 36.0
lastModifiedDate Date The last time the dataset was modified, in ISO8601 date format. Small, 36.0 36.0
name String The dataset name. Small, 36.0 36.0
namespace String The namespace of the Asset. Small, 36.0 36.0
permissions Permissions The permissions for the current user. Small, 36.0 36.0
type String The asset type. For datasets, the value is dataset. Small, 36.0 36.0
url String The URL to the resource for the dataset. Small, 36.0 36.0
userXmd XmdRepresentation Reference to the associated user xmd (if any). Medium, 38.0 38.0
versionsUrl String The URL for dataset versions. Small, 36.0 36.0
Wave User
Property Name Type Description Filter Group and Version Available Version
id ID The 18-character user ID. Small, 36.0 36.0
name String The name of the user. Small, 36.0 36.0
profilePhotoUrl String The Chatter profile photo of the user. Small, 36.0 36.0
Permissions
Property Name Type Description Filter Group and Version Available Version
manage Boolean Indicates whether a user can manage access control on an asset. Small, 36.0 36.0
modify Boolean Indicates whether a user can modify an asset. Small, 36.0 36.0
view Boolean Indicates whether a user can view an asset. Small, 36.0 36.0
AssetReferenceRepresentation
Property Name Type Description Filter Group and Version Available Version
id String The 18 character ID of the asset. Small, 36.0 36.0
label String The asset label. Small, 36.0 36.0
name String The asset developer name. Small, 36.0 36.0
namespace String The namespace that qualifies the asset name Small, 37.0 37.0
url String The asset URL. Small, 36.0 36.0
Example Response Body
1{
2    "createdBy" : {
3      "id" : "005D00000018LSoIAM",
4      "name" : "User Name",
5      "profilePhotoUrl" : "https://yourInstance.salesforce.com/profilephoto/005/T"
6    },
7    "createdDate" : "2015-03-25T20:27:34.000Z",
8    "currentVersionId" : "0FcD00000000183KAA",
9    "currentVersionUrl" : "/services/data/v36.0/wave/datasets/0FbD000000000huKAA/versions/0FcD00000000183KAA",
10    "folder": {
11      "id":"005xx000001SwTWAA0"
12    },
13    "id" : "0FbD000000000huKAA",
14    "label" : "OppHistory",
15    "lastAccessedDate" : "2015-03-27T18:31:39.000Z",
16    "lastModifiedBy" : {
17      "id" : "005D00000018LT8IAM",
18      "name" : "Integration User",
19      "profilePhotoUrl" : ""https://yourInstance.salesforce.com/profilephoto/005/U""
20    },
21    "lastModifiedDate" : "2015-03-25T20:27:44.000Z",
22    "name" : "OppHistory",
23    "permissions" : {
24      "modify" : true,
25      "view" : true
26    },
27    "type" : "dataset",
28    "url" : "/services/data/v36.0/wave/datasets/0FbD000000000huKAA"
29  }