Wufoo · Schema
Wufoo User
A user inside a Wufoo account.
FormsForm BuilderSurveysData CollectionWebhooksPaymentsSurveyMonkey
Properties
| Name | Type | Description |
|---|---|---|
| User | string | |
| string | ||
| FirstName | string | |
| LastName | string | |
| Company | string | |
| TimeZone | string | |
| SubdomainPrefix | string | |
| Hash | string | |
| IsAccountOwner | string | |
| ApiKey | string | |
| LinkForms | string | |
| LinkReports | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-evangelist/wufoo/json-schema/wufoo-user-schema.json",
"title": "Wufoo User",
"description": "A user inside a Wufoo account.",
"type": "object",
"required": ["Hash"],
"properties": {
"User": { "type": "string" },
"Email": { "type": "string", "format": "email" },
"FirstName": { "type": "string" },
"LastName": { "type": "string" },
"Company": { "type": "string" },
"TimeZone": { "type": "string" },
"SubdomainPrefix": { "type": "string" },
"Hash": { "type": "string" },
"IsAccountOwner": { "type": "string", "enum": ["0", "1"] },
"ApiKey": { "type": "string" },
"LinkForms": { "type": "string", "format": "uri" },
"LinkReports": { "type": "string", "format": "uri" }
}
}