123FormBuilder · Schema

Account

A 123FormBuilder billable account provisioned via the Accounts API.

Online FormsForm BuilderSurveysWorkflowData CollectionSubmissionsWebhooksHIPAAGDPRPayments

Properties

Name Type Description
user_id integer Identifier of the account's master user.
email string
name string
company_name string
plan string Subscription plan name.
created_at string
View JSON Schema on GitHub

JSON Schema

123formbuilder-rest-api-v2-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/123formbuilder/refs/heads/main/json-schema/123formbuilder-rest-api-v2-account-schema.json",
  "title": "Account",
  "description": "A 123FormBuilder billable account provisioned via the Accounts API.",
  "type": "object",
  "properties": {
    "user_id": {"type": "integer", "description": "Identifier of the account's master user."},
    "email": {"type": "string", "format": "email"},
    "name": {"type": "string"},
    "company_name": {"type": "string"},
    "plan": {
      "type": "string",
      "description": "Subscription plan name.",
      "enum": ["Free", "Starter", "Individual", "Gold", "Platinum", "Diamond", "Enterprise"]
    },
    "created_at": {"type": "string", "format": "date-time"}
  },
  "required": ["user_id", "email", "plan"]
}