Lightdash · Example Payload

Lightdash My Account Example

My Account

Lightdash My Account 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/user",
  "summary": "Register user",
  "tags": [
    "My Account"
  ],
  "requestBody": {
    "required": true,
    "content": {
      "application/json": {
        "schema": {
          "$ref": "#/components/schemas/RegisterOrActivateUser"
        }
      }
    }
  },
  "responses": {
    "200": {
      "description": "Ok",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/ApiRegisterUserResponse"
          }
        }
      }
    },
    "default": {
      "description": "Error",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/ApiErrorPayload"
          }
        }
      }
    }
  }
}