Apache James · Schema

UserRequest

Request body for user creation

EmailIMAPJavaJMAPMail ServerOpen SourceSMTP

Properties

Name Type Description
username string User email address
password string User password
View JSON Schema on GitHub

JSON Schema

webadmin-rest-api-user-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-james/refs/heads/main/json-schema/webadmin-rest-api-user-request-schema.json",
  "title": "UserRequest",
  "description": "Request body for user creation",
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "description": "User email address",
      "example": "[email protected]"
    },
    "password": {
      "type": "string",
      "description": "User password",
      "example": "securepassword"
    }
  }
}