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.
Replicated Dataset Fields Resource
Resource URL
1/wave/replicatedDatasets/<Id>/fieldsFormats
JSON
Available Version
GET, PATCH - 37.0, POST - 67.0
Available in Postman
To view and test a working example of this resource, see getReplicatedFields in Postman. For information about how to authenticate your org with Postman, see the CRM Analytics Rest API Quick Start.
Available Components
HTTP Methods
GET POST PATCH
Response body for GET, POST, and PATCH
POST Request Body
PATCH Request Body
Replicated Field Collection Input
The following JSON shows how to update fields for a connected object.
1{
2 "fields": [
3 {"fieldType": "text", "label": "Id", "name": "Id", "skipped": "false"},
4 {"fieldType": "text", "label": "Name", "name": "Name", "skipped": "false"},
5 {"fieldType": "numeric", "label": "Amount", "name": "Amount", "precision": 18,
6 "scale": 2, "skipped": "false"},
7 {"fieldType": "date", "label": "CloseDate", "name": "CloseDate",
8 "format": "yyyy-MM-dd‘T‘HH:mm:ss.SSS‘Z‘", "skipped": "false"}
9 ]
10}