Companies

Update company

Updates product info and brand context that AI uses when generating emails.

patch/companies/{companyId}

Path parameters

companyIdstring required

Company ID

Request body

namestring
descriptionstring nullable
logoUrlstring nullable
founderNamestring nullable
primaryColorstring

6-digit hex color, for example

brandColorsobject nullable
valuePropsobject[] nullable
testimonialsobject[] nullable
toneVoicestring nullable
companyContextstring nullable
emailLengthPreference'concise' | 'balanced' | 'detailed'
socialLinksobject nullable
privacyPolicyUrlstring nullable
termsUrlstring nullable
addressstring nullable
languagestring
pricingobject nullable
fontFamilystring nullable
emailDirection'ltr' | 'rtl'

Response

Company updated

successboolean

Example response

{
  "success": true,
  "company": {
    "id": "company_abc123",
    "name": "Acme Inc",
    "description": "Lifecycle email automation for SaaS teams.",
    "status": "ready",
    "websiteUrl": "acme.com",
    "logoUrl": "https://example.com/logo.png",
    "founderName": "Sarah",
    "primaryColor": "#0ea5e9",
    "brandColors": {
      "primary": "#0ea5e9"
    },
    "valueProps": [
      {
        "title": "Fast setup",
        "description": "Launch lifecycle emails in minutes."
      }
    ],
    "toneVoice": "clear, direct, warm",
    "companyContext": "Acme helps SaaS teams send lifecycle emails from product events.",
    "emailLengthPreference": "balanced",
    "url": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_abc123",
    "previewUrl": "https://sequenzy.com/dashboard/company/comp_abc123/campaign/camp_abc123?step=review",
    "language": "en",
    "emailDirection": "ltr"
  }
}

Changes