SerenAI

Pay Per Call Agentic Commerce

SignupRequest

Properties

PropertyTypeRequiredDescription
email Email Yes
name string Yes
password string Yes
referral_code string,null No Optional referral code for affiliate tracking
View JSON Schema
{
  "type": "object",
  "required": [
    "email",
    "password",
    "name"
  ],
  "properties": {
    "email": {
      "$ref": "#/components/schemas/Email"
    },
    "name": {
      "type": "string"
    },
    "password": {
      "type": "string"
    },
    "referral_code": {
      "type": [
        "string",
        "null"
      ],
      "description": "Optional referral code for affiliate tracking"
    }
  }
}