Lightdash · Example Payload

Lightdash Organizations Example

Organizations

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

Top-level fields

methodpathsummarytagsrequestBodyresponses

Example Payload

Raw ↑
{
  "method": "PUT",
  "path": "/api/v1/org/sso/azuread",
  "summary": "Upsert Azure AD SSO configuration",
  "tags": [
    "Organizations"
  ],
  "requestBody": {
    "required": true,
    "content": {
      "application/json": {
        "schema": {
          "$ref": "#/components/schemas/UpsertAzureAdSsoConfig"
        }
      }
    }
  },
  "responses": {
    "200": {
      "description": "Ok",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/ApiUpsertAzureAdSsoConfigResponse"
          }
        }
      }
    },
    "default": {
      "description": "Error",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/ApiErrorPayload"
          }
        }
      }
    }
  }
}