Tableau · Example Payload

Tableau Updatedatasource Example

AnalyticsBusiness IntelligenceDashboardsData Visualization

Tableau Updatedatasource Example is an example object payload from Tableau, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "updateDataSource",
  "method": "PUT",
  "path": "/sites/{site-id}/datasources/{datasource-id}",
  "summary": "Tableau Update Data Source",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "UpdatedatasourceRequestExample",
      "example": {
        "datasource": {
          "name": "Example Title",
          "project": {
            "id": "abc123"
          },
          "owner": {
            "id": "abc123"
          },
          "isCertified": true,
          "certificationNote": "example_value",
          "encryptExtracts": "example_value"
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Updatedatasource200Example",
      "example": {
        "datasource": {
          "id": "abc123",
          "name": "Example Title",
          "description": "A sample description.",
          "contentUrl": "https://www.example.com",
          "type": "example_value",
          "createdAt": "2026-01-15T10:30:00Z",
          "updatedAt": "2026-01-15T10:30:00Z",
          "isCertified": true,
          "certificationNote": "example_value",
          "useRemoteQueryAgent": true,
          "hasExtracts": true,
          "encryptExtracts": "example_value",
          "project": {
            "id": "abc123",
            "name": "Example Title"
          },
          "owner": {
            "id": "abc123",
            "name": "Example Title"
          },
          "tags": {
            "tag": {}
          }
        }
      }
    }
  ]
}