Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
Xmd List Resource
Returns a list of Xmd resources for a version of a dataset. This list is for main,
system, and user Xmd types. To view asset type Xmds, refer to the Asset Xmd API resource.
Resource URL
1/wave/datasets/<datasetIdOrApiName>/versions/<versionID>/xmdsFormats
JSON
Available Version
36.0
Available in Postman
To view and test a working example of this resource, see getXmd in Postman. For information about how to authenticate your org with Postman, see the CRM Analytics Rest API Quick Start.
HTTP Methods
GET
GET Response Body
Example Response Body
1{
2 "url" : "/services/data/v36.0/wave/datasets/0Fb4000000000FtCAI/versions/0Fc4000000001VOCAY/xmds",
3 "xmds" : [ {
4 "type" : "main",
5 "url" : "/services/data/v36.0/wave/datasets/0Fb4000000000FtCAI/versions/0Fc4000000001VOCAY/xmds/main"
6 }, {
7 "type" : "user",
8 "url" : "/services/data/v36.0/wave/datasets/0Fb4000000000FtCAI/versions/0Fc4000000001VOCAY/xmds/user"
9 }, {
10 "type" : "system",
11 "url" : "/services/data/v36.0/wave/datasets/0Fb4000000000FtCAI/versions/0Fc4000000001VOCAY/xmds/system"
12 } ]
13}