SerenAI

Pay Per Call Agentic Commerce

OrganizationOtpEnrollmentChallenge

Properties

PropertyTypeRequiredDescription
account_name string Yes
enrollment_status OrganizationOtpEnrollmentStatus Yes
issuer string Yes
manual_entry_key string Yes
organization_id string Yes
otpauth_uri string Yes
user_id string Yes
View JSON Schema
{
  "type": "object",
  "required": [
    "organization_id",
    "user_id",
    "enrollment_status",
    "issuer",
    "account_name",
    "manual_entry_key",
    "otpauth_uri"
  ],
  "properties": {
    "account_name": {
      "type": "string"
    },
    "enrollment_status": {
      "$ref": "#/components/schemas/OrganizationOtpEnrollmentStatus"
    },
    "issuer": {
      "type": "string"
    },
    "manual_entry_key": {
      "type": "string"
    },
    "organization_id": {
      "type": "string",
      "format": "uuid"
    },
    "otpauth_uri": {
      "type": "string"
    },
    "user_id": {
      "type": "string",
      "format": "uuid"
    }
  }
}