Tableau · Example Payload

Tableau Updateproject Example

AnalyticsBusiness IntelligenceDashboardsData Visualization

Tableau Updateproject 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": "updateProject",
  "method": "PUT",
  "path": "/sites/{site-id}/projects/{project-id}",
  "summary": "Tableau Update Project",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "UpdateprojectRequestExample",
      "example": {
        "project": {
          "name": "Example Title",
          "description": "A sample description.",
          "parentProjectId": "500123",
          "contentPermissions": "LockedToProject"
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Updateproject200Example",
      "example": {
        "project": {
          "id": "abc123",
          "name": "Example Title",
          "description": "A sample description.",
          "parentProjectId": "500123",
          "contentPermissions": "LockedToProject",
          "createdAt": "2026-01-15T10:30:00Z",
          "updatedAt": "2026-01-15T10:30:00Z",
          "owner": {
            "id": "abc123"
          },
          "topLevelProject": true
        }
      }
    }
  ]
}