Lightdash · Example Payload

Lightdash Scim Example

SCIM

Lightdash Scim 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": "POST",
  "path": "/api/v1/scim/v2/Users",
  "summary": "Create user",
  "tags": [
    "SCIM"
  ],
  "requestBody": {
    "description": "User to create",
    "required": true,
    "content": {
      "application/json": {
        "schema": {
          "$ref": "#/components/schemas/ScimUpsertUser",
          "description": "User to create"
        }
      }
    }
  },
  "responses": {
    "200": {
      "description": "Ok",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/ScimUser"
          }
        }
      }
    },
    "201": {
      "description": "Created",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/ScimUser"
          }
        }
      }
    }
  }
}