Replicated Dataset Fields Resource

Retrieves a list of fields for the specified connected object.

Resource URL

1/wave/replicatedDatasets/<Id>/fields

Formats

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.

HTTP Methods

GET POST PATCH

Response body for GET, POST, and PATCH

Replicated Field Collection

POST Request Body

Source Object Data Input

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}