# Inflection Help Center ## Docs - [Inflection Connected Apps using oAuth 2.1](https://docs.inflection.io/agents/connected-apps-oauth.md): Connect to Inflection's MCP server. - [In-App Chat](https://docs.inflection.io/agents/in-app-chat.md): Use Inflection's in-app agent to ideate journeys, build segments, and more. - [Inflection Agents](https://docs.inflection.io/agents/inflection-agents.md): These are the agents that work across multiple surfaces (in-app, Claude, Slack, Asana, etc.). - [Inflection MCP](https://docs.inflection.io/agents/inflection-mcp.md): Understand the tools available via Inflection's MCP server. - [Integrate with ChatGPT](https://docs.inflection.io/agents/integrate-with-chatgpt.md): Ideate and create segments and content with ChatGPT. - [Integrate with Claude](https://docs.inflection.io/agents/integrate-with-claude.md): Ideate and create segments and content with Claude. - [Integrate with Slack (COA)](https://docs.inflection.io/agents/integrate-with-slack.md): Use Inflection's Slack agent to ideate journeys, build segments, and more. - [Marketo Connector by Inflection](https://docs.inflection.io/agents/marketo-connector.md): The Inflection-managed Marketo connector - [Inflection MCP — Trust & Security](https://docs.inflection.io/agents/mcp-trust-security.md): This page documents how we run the MCP service, what data we handle, and how to reach us about security or support. - [Personalized Email Asset](https://docs.inflection.io/agents/personalized-email.md): One email asset, a unique version per contact — a default email plus per-contact versions pushed in over the API or MCP. - [Send Personalized Emails from Clay](https://docs.inflection.io/agents/send-personalized-emails-from-clay.md): Push a unique, per-contact email from a Clay table into an Inflection Personalized Email Asset with Clay's HTTP API column. - [Asynchronous writes](https://docs.inflection.io/api-reference/async-writes.md): Contact writes return a transaction you poll. - [Authentication](https://docs.inflection.io/api-reference/authentication.md): Two ways to authenticate: a Personal Access Token or an OAuth 2.1 connected app. - [Get activity log](https://docs.inflection.io/api-reference/contact-activity/get-activity-log.md): A paged change log of the contact's record: updates to contact properties and to the properties of the underlying product-user record. For engagement and events, use the product-activity and marketing-activity endpoints instead. - [Get marketing activity](https://docs.inflection.io/api-reference/contact-activity/get-marketing-activity.md): A paged list of marketing touches for the contact: email sends, opens, clicks, and journey activity. - [Get product activity](https://docs.inflection.io/api-reference/contact-activity/get-product-activity.md): A paged list of in-app product events (login, signup, custom events). Empty for a contact with no product activity, and for an unknown contact id. - [Get Salesforce record](https://docs.inflection.io/api-reference/contact-activity/get-salesforce-record.md): Returns the contact's mapped Salesforce record as a free-form object. If the contact exists but has no Salesforce record, `data` is omitted (still `200`). A bogus contact id returns `404`. - [Batch upsert contacts](https://docs.inflection.io/api-reference/contacts/batch-upsert-contacts.md): Upserts up to 1,000 contacts in one transaction. New emails come back `CREATED`, existing ones `UPDATED`. This is the reliable create-or-update path for both new and existing contacts (single `POST` is create-only). - [Create a contact](https://docs.inflection.io/api-reference/contacts/create-a-contact.md): Creates a new contact. The write is processed asynchronously: the call returns a transaction with status `PENDING`, which you can poll to confirm the result (see [Asynchronous writes](/api-reference/async-writes)). Property names inside `properties` must be **snake_case** (for example, `first_name`)… - [Get a transaction](https://docs.inflection.io/api-reference/contacts/get-a-transaction.md): Returns `PENDING`, `DONE` (with per-contact `results`), or `NOT_EXIST` for an unknown id (still HTTP `200`). See [Asynchronous writes](/api-reference/async-writes). - [Get contact by email](https://docs.inflection.io/api-reference/contacts/get-contact-by-email.md): Returns the full stored record under `data.properties` (snake_case keys). URL-encode the email (`@` → `%40`). A missing contact returns `400 BAS-E-002`. - [Get contact by ID](https://docs.inflection.io/api-reference/contacts/get-contact-by-id.md): Returns the full stored record under `data.properties` (snake_case keys). A missing contact returns `400 BAS-E-002` (not the more conventional `404`). - [Update a contact](https://docs.inflection.io/api-reference/contacts/update-a-contact.md): Updates an existing contact. The write is processed asynchronously: the call returns a transaction with status `PENDING`, which you can poll to confirm the result (see [Asynchronous writes](/api-reference/async-writes)). - [Set a personalized email version](https://docs.inflection.io/api-reference/email-versions/set-a-personalized-email-version.md): Stores the personalized version of a [Personalized Email Asset](/agents/personalized-email) for one contact. One version per contact per asset; re-posting for the same contact replaces their version. At send time the contact receives their version if it's ready; contacts without one get the asset's… - [Create an email](https://docs.inflection.io/api-reference/emails/create-an-email.md): Emails are **create and read** over the API. After creating, you can edit the HTML via the returned `editorUrl`; fetch it back with **Get an email**. - [Get an email](https://docs.inflection.io/api-reference/emails/get-an-email.md): Fetch one created email by id, including its `editorUrl`. A missing email returns **404** (unlike contacts, which report 400). - [Errors & status codes](https://docs.inflection.io/api-reference/errors.md): What to expect when something's missing or wrong. - [Get Your Personal Access Token](https://docs.inflection.io/api-reference/get-your-pat.md): Create the Personal Access Token (PAT) that authenticates your API calls. - [Introduction](https://docs.inflection.io/api-reference/introduction.md): A REST API for reading and writing the people in your Inflection workspace: their profiles, product and marketing activity, static lists, and emails. - [Add list members](https://docs.inflection.io/api-reference/lists-and-members/add-list-members.md): Add members by contact id. Unknown ids are skipped and reported in `errors` with a still-successful `200` (partial success); the response reports how many were `added`. - [Create a list](https://docs.inflection.io/api-reference/lists-and-members/create-a-list.md): Takes a `name` (and optional `folder`); a duplicate name returns `409 LIST_ALREADY_EXISTS`. - [Delete a list](https://docs.inflection.io/api-reference/lists-and-members/delete-a-list.md): Soft delete; returns `200` with a result body. - [Get a list](https://docs.inflection.io/api-reference/lists-and-members/get-a-list.md): Missing list returns `404 NOT_FOUND`. - [Get list members](https://docs.inflection.io/api-reference/lists-and-members/get-list-members.md): Member records use **camelCase** field names (`firstName`, `companyName`, `phoneNumber`), unlike the snake_case that contact lookups return for the same person. - [Remove a list member](https://docs.inflection.io/api-reference/lists-and-members/remove-a-list-member.md) - [Update a list](https://docs.inflection.io/api-reference/lists-and-members/update-a-list.md): Returns only `{ "staticListId", "success": true }`, a confirmation flag, not the updated list object. Re-fetch the list if you need its new state. - [Pagination](https://docs.inflection.io/api-reference/pagination.md): 1-based pages on every list endpoint. - [Quickstart](https://docs.inflection.io/api-reference/quickstart.md): From zero to your first response in two calls. - [Rate Limits](https://docs.inflection.io/api-reference/rate-limits.md): No usage caps, just a rate limit of 1,000 requests per second per workspace. - [The response envelope](https://docs.inflection.io/api-reference/response-envelope.md): One predictable shape for every response. - [Amplitude](https://docs.inflection.io/connections/amplitude.md): Use Amplitude product activity to build audiences, trigger journeys, and personalize messaging in Inflection. - [Common Connections & Use Cases](https://docs.inflection.io/connections/common-connections-use-cases.md): How data from Sales, Product, and Marketing come together to power personalization at scale. - [Custom Forms](https://docs.inflection.io/connections/custom-forms.md): Collect prospect or customer responses using Inflection's forms API. - [Export to Data Warehouse](https://docs.inflection.io/connections/export-to-data-warehouse.md): Export raw data to your data warehouse to support marketing analytics. - [Import from Data Warehouse](https://docs.inflection.io/connections/import-from-data-warehouse.md): Connect your data warehouse as a source of Inflection data. Send marketing activities from Inflection to DWH for analytics. - [Inbound Webhooks](https://docs.inflection.io/connections/inbound-webhooks.md): Connect to other third-party tools using inbound webhooks. - [Inflection Forms](https://docs.inflection.io/connections/inflection-forms.md): Collect prospect or customer responses with native Inflection forms. - [Outbound Webhooks](https://docs.inflection.io/connections/outbound-webhooks.md): Send data to external systems in real time. - [Salesforce](https://docs.inflection.io/connections/salesforce.md): Connect your Sales database to Inflection via our bidirectional, native integration. - [Segment](https://docs.inflection.io/connections/segment.md): Connect product data from your CDP to Inflection for targeting and personalization. Send marketing activities from Inflection to Segment for analytics. - [BigQuery Setup and Configuration](https://docs.inflection.io/connections/warehouses/bigquery.md): Set up BigQuery as an Inflection data source and export destination. - [Databricks Setup and Configuration](https://docs.inflection.io/connections/warehouses/databricks.md): Set up Databricks as an Inflection data source and export destination. - [Redshift Setup and Configuration](https://docs.inflection.io/connections/warehouses/redshift.md): Set up Amazon Redshift as an Inflection data source and export destination. - [Snowflake Setup and Configuration (using storage integration)](https://docs.inflection.io/connections/warehouses/snowflake.md): Set up Snowflake as an Inflection data source and export destination. - [Web Tracking](https://docs.inflection.io/connections/web-tracking.md): Configure Inflection web tracking to target contacts based on web browsing activities. - [Clay](https://docs.inflection.io/connections/webhooks/clay.md): Send data from Clay to Inflection using inbound webhooks. - [Clearbit](https://docs.inflection.io/connections/webhooks/clearbit.md): Send data from Clearbit to Inflection using inbound webhooks. - [Goldcast](https://docs.inflection.io/connections/webhooks/goldcast.md): Send data from Goldcast to Inflection using inbound webhooks. - [Hubspot](https://docs.inflection.io/connections/webhooks/hubspot.md): Send data from HubSpot to Inflection using inbound webhooks. - [Linkedin](https://docs.inflection.io/connections/webhooks/linkedin.md): Send data from LinkedIn to Inflection using inbound webhooks. - [Marketo](https://docs.inflection.io/connections/webhooks/marketo.md): Send data from Marketo to Inflection using inbound webhooks. - [Zapier](https://docs.inflection.io/connections/webhooks/zapier.md): Send data from Zapier to Inflection using inbound webhooks. - [Zoom](https://docs.inflection.io/connections/webhooks/zoom.md): Send data from Zoom to Inflection using inbound webhooks. - [Account Scoring](https://docs.inflection.io/database/account-scoring.md): Build models that grade every account from 0 to 100 based on the signals that define a strong fit for your business. - [Building Audiences](https://docs.inflection.io/database/building-audiences.md): Learn about the many options to build audiences in Inflection, and best practices for structuring queries. - [Data Dictionary](https://docs.inflection.io/database/data-dictionary.md): As you build a dynamic list, the data dictionary panel shows population stats, value distributions, and a searchable list of real values for the field you're filtering. - [Data Normalization](https://docs.inflection.io/database/data-normalization.md): Data normalization helps you maintain clean, consistent contact data across your organization. - [Importing Contacts](https://docs.inflection.io/database/importing-contacts.md): Populate your database with existing contact lists while maintaining full control over field mapping and list organization. - [Segments](https://docs.inflection.io/database/segments.md): Organize and manage audiences using agentic intelligence; with complete review/edit controls via the UI. - [Account Provisioning](https://docs.inflection.io/getting-started/account-provisioning.md): Provision your Inflection account, sign in for the first time, and invite new users to join. - [Domain Authentication](https://docs.inflection.io/getting-started/domain-authentication.md): Enable sending emails from your Inflection account. - [MMCs (Monthly Marketed Contacts)](https://docs.inflection.io/getting-started/mmcs.md): Understand Inflection pricing. - [Data Warehouse Questionnaire](https://docs.inflection.io/getting-started/onboarding/data-warehouse-questionnaire.md): Onboarding questionnaire to prepare your data warehouse connection to Inflection. - [Journey Brief & Data Requirements](https://docs.inflection.io/getting-started/onboarding/journey-brief-data-requirements.md): Onboarding template for defining your first journeys and the data they require. - [Onboarding Checklist](https://docs.inflection.io/getting-started/onboarding/onboarding-checklist.md): The technical, communication, and staffing requirements to unlock the full potential of Inflection. - [Onboarding Center of Excellence](https://docs.inflection.io/getting-started/onboarding/overview.md): Everything needed to hit the ground running and get the most out of Inflection. - [Salesforce Questionnaire](https://docs.inflection.io/getting-started/onboarding/salesforce-questionnaire.md): Onboarding questionnaire to prepare your Salesforce connection to Inflection. - [Segment Questionnaire](https://docs.inflection.io/getting-started/onboarding/segment-questionnaire.md): Onboarding questionnaire to prepare your Segment connection to Inflection. - [Inflection Password Policy](https://docs.inflection.io/getting-started/password-policy.md): Non-SSO users will need to follow this policy for their Inflection password. - [Single Sign-on](https://docs.inflection.io/getting-started/single-sign-on.md): Google and Okta users can set up SSO for Inflection. - [Inflection Help Center](https://docs.inflection.io/index.md): Everything you need to set up, connect, and grow with Inflection — the B2B marketing automation platform built on your product and sales data. - [Conversions](https://docs.inflection.io/journeys/conversions.md): Configure conversions to track how your journeys influenced business outcomes. - [Emails](https://docs.inflection.io/journeys/emails.md): Steps and considerations when building an email in Inflection. - [The New Journey Canvas](https://docs.inflection.io/journeys/journey-canvas.md): The journey canvas is where you build and arrange your customer journeys. - [Journey Flow Steps Reference](https://docs.inflection.io/journeys/journey-flow-steps.md): Build personalized, responsive customer experiences or operational workflows. - [Journey Settings](https://docs.inflection.io/journeys/journey-settings.md): Configure journey settings and understand journey statuses. - [Nested Journeys](https://docs.inflection.io/journeys/nested-journeys.md): How and when to use nested journeys. - [Pausing/Editing Active Journeys](https://docs.inflection.io/journeys/pausing-editing-active-journeys.md): Steps and considerations when editing active journeys. - [Reports](https://docs.inflection.io/journeys/reports.md): Report on email performance in Inflection or in your own analytics environment. - [Tokens](https://docs.inflection.io/journeys/tokens.md): Personalize journeys and emails with tokens that reference and calculate based on attributes and activities. - [Transactional Emails](https://docs.inflection.io/journeys/transactional-emails.md): Steps and considerations when sending a transactional email. - [Trigger Journeys](https://docs.inflection.io/journeys/trigger-journeys.md): Enroll contacts automatically the moment a real-time event occurs. - [Data Subject Erasure Requests](https://docs.inflection.io/settings/data-subject-erasure-requests.md): Data Subject Erasure Requests (DSRs) allow individuals to request the deletion of their personal data, as required by privacy laws like GDPR and CCPA. - [Email Settings](https://docs.inflection.io/settings/email-settings.md): Configure global email settings, including communications limits and unsubscribe settings. - [Global UTM Parameters](https://docs.inflection.io/settings/global-utm-parameters.md): Enable global UTM parameters to add tracking to links automatically. - [MMC Dashboard](https://docs.inflection.io/settings/mmc-dashboard.md): Visibility into monthly usage overall and journey-by-journey. - [User Management](https://docs.inflection.io/settings/user-management.md): Manage the users of your Inflection workspace based on your organizational needs. - [April 2026](https://docs.inflection.io/whats-new/april-2026.md): Data Normalization, Conversions for user field changes, Wait for SFDC Sync flowstep, native form enhancements, UI updates, and Help Center 1.2. - [February 2026](https://docs.inflection.io/whats-new/february-2026.md): Viewer role, dynamic list usability enhancements, email template ID in Segment export, and Help Center content in the Inflection Agent. - [January 2026](https://docs.inflection.io/whats-new/january-2026.md): Conversions, Activity Log, MCP OAuth 2.1 beta, folder enhancements, Product Data Explorer redesign, and MMC indicators. - [July 2026](https://docs.inflection.io/whats-new/july-2026.md): Inflection Public API (V1), Personalized Email Asset, Send Internal Alert for Trigger Journeys, journey lifecycle events in Data Warehouse and Segment writeback, shorter tracking URLs, and a redesigned Help Center. - [June 10, 2026](https://docs.inflection.io/whats-new/june-10-2026.md): Edit templates by name, restyle emails in plain language, richer in-app chat, email grading, and 20+ new MCP tools. - [June 2026](https://docs.inflection.io/whats-new/june-2026.md): New Journey Canvas, Account Scoring, Amplitude integration (read), SFDC Opportunity matching strategies, inbound webhook deletion, and Trigger Journey audience filters. - [June 3, 2026](https://docs.inflection.io/whats-new/june-3-2026.md): Grounded audience building, faster email drafting, dashboard-accurate analytics, and token math for PQL scores. - [March 2026](https://docs.inflection.io/whats-new/march-2026.md): Inflection Native Forms, outbound webhook response mapping, customizable exports, and Salesforce performance improvements. - [May 12, 2026](https://docs.inflection.io/whats-new/may-12-2026.md): Build and edit by conversation, a streamlined MCP, artifacts in the in-app chat, and agents in Slack and Asana. - [May 2026](https://docs.inflection.io/whats-new/may-2026.md): Trigger Journeys, SFDC Opportunity sync, Data Dictionary, unified mapping enhancements, richer form and webhook filters, and link tracking optimizations. - [May 29, 2026](https://docs.inflection.io/whats-new/may-29-2026.md): Analytics in chat and MCP, file attachments in the in-app chat, and more reliable token building. ## OpenAPI Specs - [openapi](https://docs.inflection.io/api-reference/openapi.yaml)