Properties
| Name | Type | Description |
|---|---|---|
| default_sender_name | string | This field is used to auto-populate the default sender name on flow and campaign emails. |
| default_sender_email | string | This field is used to auto-populate the default sender email address on flow and campaign emails. |
| website_url | string | |
| organization_name | string | |
| street_address | object | Street address for your organization. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ContactInformation",
"title": "ContactInformation",
"type": "object",
"properties": {
"default_sender_name": {
"description": "This field is used to auto-populate the default sender name on flow and campaign emails.",
"type": "string",
"example": "Klaviyo Demo"
},
"default_sender_email": {
"description": "This field is used to auto-populate the default sender email address on flow and campaign emails.",
"type": "string",
"example": "[email protected]"
},
"website_url": {
"type": "string",
"example": "https://www.klaviyo.com",
"nullable": true
},
"organization_name": {
"type": "string",
"example": "Klaviyo Demo"
},
"street_address": {
"description": "Street address for your organization.",
"$ref": "#/components/schemas/StreetAddress"
}
},
"required": [
"default_sender_name",
"default_sender_email",
"organization_name",
"street_address"
]
}