HomeGuidesAPIsReleasesDownloadsDeveloperEvents
Log In
Guides
These docs are for v2024.02.01. Click to read the latest docs for v2024.08.01.

SERVICE_USERS_USER_DEACTIVATE

{
  "type" : "object",
  "description": "Data used for SERVICE_USERS_USER_CREATE, SERVICE_USERS_USER_UPDATE, SERVICE_USERS_USER_ACTIVATE and SERVICE_USERS_USER_DEACTIVATE",
  "properties" : {
    "userId" : {
      "type" : "string"
    },
    "username" : {
      "type" : "string"
    },
    "fullname" : {
      "type" : "string"
    },
    "email" : {
      "type" : "string"
    },
    "role" : {
      "type" : "string"
    },
    "dateAdded" : {
      "type" : "string",
      "format" : "date-time"
    }
  },
  "required": ["userId", "username", "fullname", "email", "role", "dateAdded" ]
}