VTEX · Schema

CreateUserRequest

Request body for creating users.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
name string Name of the user.
email string Email of the user.
View JSON Schema on GitHub

JSON Schema

vtex-createuserrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateUserRequest",
  "title": "CreateUserRequest",
  "description": "Request body for creating users.",
  "required": [
    "email"
  ],
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the user.",
      "type": "string",
      "example": "John"
    },
    "email": {
      "description": "Email of the user.",
      "type": "string",
      "example": "[email protected]"
    }
  }
}