Tableau · Example Payload

Tableau Switchsite Example

AnalyticsBusiness IntelligenceDashboardsData Visualization

Tableau Switchsite 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": "switchSite",
  "method": "POST",
  "path": "/auth/switchSite",
  "summary": "Tableau Switch Site",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "SwitchsiteRequestExample",
      "example": {
        "site": {
          "contentUrl": "https://www.example.com"
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Switchsite200Example",
      "example": {
        "credentials": {
          "token": "example_value",
          "site": {
            "id": "abc123",
            "contentUrl": "https://www.example.com"
          },
          "user": {
            "id": "abc123"
          }
        }
      }
    }
  ]
}