For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
HomepageProduct HelpLog inTry for Free
Developers HomeAPI ReferenceMCP
Developers HomeAPI ReferenceMCP
  • Getting Started
    • Introduction
    • Authentication with API Keys
    • Authentication with OAuth
    • API Clients
    • Pagination
    • Specifying Fields
    • Filter Parameters
    • HTTP Response Codes
    • Rate Limits
    • Timezone Offsets
    • Rich Text Fields
    • Changelog
  • CRM Core
    • Leads
    • Contacts
    • Opportunities
    • Tasks
    • Files
    • Custom Objects
    • Comments
  • Activities
    • Activities
    • Notes
    • Calls
    • Emails
    • Email Threads
    • WhatsApp Messages
    • Meetings
    • Custom Activities
    • Creations
    • Form Submissions
    • Lead Status Changes
    • Opportunity Status Changes
    • Lead Merges
    • Task Completions
  • Events & Webhooks
    • Webhooks
    • Events
  • Search & Reporting
    • Advanced Filtering
    • Smart Views
    • Reporting
  • Automation & Bulk Actions
    • Sequences (Workflows)
    • Bulk Actions
    • Exports
    • AI Field Enrichment
  • CRM Configuration
    • Custom Fields
    • Custom Activity Types
    • Custom Object Types
    • Pipelines
    • Opportunity Statuses
    • Lead Statuses
    • Integration Links
    • Forms
  • Communication Configuration
    • Email Templates
    • SMS Templates
    • Outcomes
    • Playbooks
    • Scheduling Links Guide
    • Scheduling Links
    • Connected Accounts
    • Send As
    • Unsubscribed Emails
    • Phone Numbers
    • Blocked Phone Numbers
    • Dialers
  • Users & Organizations
    • Users
    • Organizations
    • Memberships
    • Roles
    • Groups
Close

Product

OverviewCommunicationAutomationIntegrationsReportingSMSCallingSecurityForms

Pricing & Use Cases

PricingClose vs Other CRMsCustomer Stories

Resources

Sales BlogSales ResourcesSales GuidesWebinarsOn-Demand DemoSales Tools

Company

AboutCareersPartner with CloseBrand GuidelinesTermsPrivacyGDPRCCPA

Get Help

+1-833-GO-CLOSEHelp CenterDownload the Close AppProduct UpdatesSystem Status
LogoLogo
HomepageProduct HelpLog inTry for Free
Getting Started

Rich Text Fields

How rich text fields work in the Close API, including supported HTML tags and formatting.
||View as Markdown|
Was this page helpful?
Edit this page
Previous

Timezone Offsets

Next

API Changelog

Built with

In many places, the application allows users to compose using rich text. In particular, within comments, note activities, and notes on calls or meetings.

These rich text fields are exposed as strings, where the content is a restricted subset of XHTML. All fields must begin and end with <body></body> tags.

Within the body, there are plenty of formatting options:

1<body>
2 <h1>HTML Notes Example</h1>
3 <p>
4 This is an <em>example</em> note. It includes various elements like
5 <strong>strong emphasis</strong>, images, and links.
6 </p>
7 <p>
8 Here's a list of some inline elements you can use:
9 </p>
10 <ul>
11 <li><b>Bold text</b></li>
12 <li><i>Italic text</i></li>
13 <li><u>Underlined text</u></li>
14 <li><s>Strikethrough text</s></li>
15 <li><span style="color: red;">Colored text</span></li>
16 <li><code>example_function()</code></li>
17 </ul>
18 <p>
19 And don't forget about links! Here's an example:
20 <a href="http://www.example.com">Click me!</a>
21 </p>
22 <p>
23 You can also include images:
24 <img src="http://www.example.com/image.jpg" alt="Example Image" />
25 </p>
26 <hr />
27 <p>
28 Finally, many rich text fields support mentioning users or groups cc
29 <span
30 data-type="mention"
31 data-id="group_xxxx"
32 data-label="Engineers"
33 class="mention"
34 >
35 @Engineers
36 </span>
37 </p>
38</body>