Tableau · Example Payload

Tableau Addfavorites Example

AnalyticsBusiness IntelligenceDashboardsData Visualization

Tableau Addfavorites 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": "addFavorites",
  "method": "PUT",
  "path": "/sites/{site-id}/favorites/{user-id}",
  "summary": "Tableau Add Favorites",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "AddfavoritesRequestExample",
      "example": {
        "favorite": {
          "label": "Example Title",
          "workbook": {
            "id": "abc123"
          },
          "view": {
            "id": "abc123"
          },
          "datasource": {
            "id": "abc123"
          },
          "project": {
            "id": "abc123"
          }
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Addfavorites200Example",
      "example": {
        "favorites": {
          "favorite": [
            {
              "label": "Example Title"
            }
          ]
        }
      }
    }
  ]
}