Adobe Captivate · JSON Structure

Prime Api User Update Request Structure

Request body for updating a user

Type: object Properties: 1 Required: 1
AuthoringEducationeLearningLMSSCORMTrainingxAPI

UserUpdateRequest is a JSON Structure definition published by Adobe Captivate, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

data

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-captivate/refs/heads/main/json-structure/prime-api-user-update-request-structure.json",
  "name": "UserUpdateRequest",
  "description": "Request body for updating a user",
  "type": "object",
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "type": "object",
      "required": [
        "id",
        "type",
        "attributes"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "User ID"
        },
        "type": {
          "type": "string",
          "const": "user"
        },
        "attributes": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string",
              "description": "Updated user name"
            },
            "email": {
              "type": "string",
              "format": "email",
              "description": "Updated email address"
            },
            "profile": {
              "type": "string",
              "description": "Updated profile bio"
            },
            "state": {
              "type": "string",
              "enum": [
                "ACTIVE",
                "DELETED",
                "SUSPENDED"
              ]
            }
          }
        }
      }
    }
  }
}