Superchat is a unified messaging platform that enables businesses to communicate with customers across multiple channels, including WhatsApp, Instagram Direct, Facebook Messenger, Email, and more.
Superchat is a unified messaging platform that enables businesses to communicate with customers across multiple channels, including WhatsApp, Instagram Direct, Facebook Messenger, Email, and more. On Nagent, Superchat is exposed as a fully-configurable team chat integration that any agent can call — 17 actions, and API key authentication. No code is required to wire Superchat into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use Superchat to automate the kinds of tasks team chat teams previously handled manually. Concrete examples — each one is a single agent step in Nagent — include:
Every action and trigger is paired with a structured input/output schema (visible in the sections below), so when you wire Superchat into Helix — our agentic agent builder — the editor knows exactly what each step expects and produces. Configure once, deploy anywhere across your Nagent agents.
Every operation an agent can call against Superchat, with input parameters and output schema. Drop these into any step of an agent built in Helix.
SUPERCHAT_CREATE_CONTACTCreate a new contact in Superchat with phone or email handles. Use this tool to register contact details before sending messages. You must provide at least one handle (phone or email). Optional fields include first name, last name, gender, and custom attributes (if predefined in your account settings).
Input parameters
Gender of the contact.
List of one or more contact handles (phone or email). At least one handle is required. Example: \[{"type": "phone", "value": "+14155552671"}\] or \[{"type": "mail", "value": "user@example.com"}\].
Last name of the contact.
First name of the contact.
Optional list of custom attributes. NOTE: Custom attribute fields must be predefined in your Superchat account settings before they can be used via the API. Using undefined fields will result in a 400 error.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_CREATE_TEMPLATE_FOLDERCreate a new template folder in SuperChat for organizing message templates. Template folders help organize WhatsApp and other messaging templates into logical groups (e.g., Marketing, Sales, Customer Support). Use this action before creating templates when you want to keep them organized.
Input parameters
Name of the new template folder. Must be unique within the workspace.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_DELETE_WEBHOOKTool to delete a specific webhook by its ID. Use when you need to remove an obsolete or unwanted webhook subscription. First use SUPERCHAT_LIST_WEBHOOKS to retrieve the webhook ID, then use this action to delete it. Example: Delete webhook wh_UPYSN0Etofjl7lhhQ9yhL.
Input parameters
Unique identifier of the webhook to delete, prefixed with 'wh_'. Use SUPERCHAT_LIST_WEBHOOKS to retrieve available webhook IDs.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_GET_CONTACTRetrieve a specific contact's details by ID. Returns the contact's name, handles (phone, email, social), custom attributes, and timestamps. Use this to look up contact information before sending messages or updating contact details. Example: "Get contact details for co_abc123" or "Fetch info for contact co_xyz789".
Input parameters
The unique identifier of the contact. Superchat contact IDs always start with 'ct_' (e.g., 'ct_T0WuvJS5pcg6TsTM1f03S'). You can obtain this ID from the List Contacts or Create Contact actions.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_GET_FILERetrieve metadata for a specific file by its ID. Returns file details including the file name, MIME type, API resource URL, and a temporary download link with expiration. Use this to get information about uploaded files before downloading or processing them.
Input parameters
The unique identifier of the file to retrieve (e.g., 'fi_abc123').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_GET_USERRetrieve details of a specific user in the Superchat workspace by their user ID. Use this tool when you need to fetch profile information for a known user. Note: You can obtain user IDs by first calling the List Users action. Example user_id format: 'us_abc123xyz'
Input parameters
The unique identifier of the user to retrieve (format: us_xxx). Obtain user IDs from the List Users action.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_LIST_CHANNELSLists all communication channels in your Superchat workspace. Channels represent different messaging mediums (WhatsApp, email, SMS, Telegram, Instagram, Facebook) through which conversations occur. Results are sorted by creation date (newest first) and can be paginated using 'limit', 'after', or 'before' parameters.
Input parameters
Cursor after which channels should be returned. Cannot be used with 'before'.
Total number of channels to return (1-100).
Cursor before which channels should be returned. Cannot be used with 'after'.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_LIST_CONTACTSList all contacts in the Superchat workspace with cursor-based pagination. Use this tool to browse contacts, find contact IDs, or export contact data. Results are sorted by creation date (newest first).
Input parameters
Contact ID cursor to fetch contacts after. Use for forward pagination.
Number of contacts to return per page. Range: 1-100. Default: 50.
Contact ID cursor to fetch contacts before. Use for backward pagination.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_LIST_CONVERSATIONSRetrieves a paginated list of all conversations in your Superchat account. Each conversation includes channel info, status (open/snoozed/done), assigned users, contacts, labels, and inbox details. Use this to browse conversations, find specific ones by status or channel, or get conversation IDs for further operations. Supports cursor-based pagination to handle large result sets.
Input parameters
Pagination cursor to retrieve the next page of results. Use the 'next_cursor' value from a previous response. Cannot be used with 'before'. Omit for the first page.
Number of conversations to return (1-100). Default is 50.
Pagination cursor to retrieve the previous page of results. Use the 'previous_cursor' value from a previous response. Cannot be used with 'after'. Omit for the first page.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_LIST_CUSTOM_ATTRIBUTESList all custom attributes defined for contacts in your Superchat account. Custom attributes are user-defined fields that extend contact data beyond standard fields like name and email. Use this action to discover available custom attributes before reading or updating contact information. Supports cursor-based pagination for accounts with many custom attributes. Common use cases: - Discover available custom fields before updating contacts - Retrieve custom attribute types (string, number, date, select, etc.) - Get custom attribute IDs for use in other API calls
Input parameters
Cursor for pagination to get results after a specified position.
The total number of objects to be returned. Min: 1, Max: 100.
Cursor for pagination to get results before a specified position.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_LIST_INBOXESTool to list all inboxes. Use when you need to retrieve inbox IDs and metadata before sending or organizing messages.
Input parameters
Cursor after which inboxes should be returned. Use for forward pagination. Cannot be used with 'before'.
Total number of inboxes to return (1-100). Default is 50.
Cursor before which inboxes should be returned. Use for backward pagination. Cannot be used with 'after'.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_LIST_LABELSList all labels in the Superchat workspace. Labels are used to categorize and organize conversations. Use this tool to retrieve available labels and their IDs, which can then be used to assign labels to conversations via the update conversation endpoint. Supports cursor-based pagination for workspaces with many labels.
Input parameters
Cursor for pagination. Returns labels after this cursor position. Use the 'next_cursor' from a previous response.
Number of labels to return per page (1-100). Defaults to 50.
Cursor for pagination. Returns labels before this cursor position. Use the 'previous_cursor' from a previous response. Cannot be used together with 'after'.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_LIST_TEMPLATESTool to list all message templates. Use when you need to fetch available message templates.
Input parameters
Cursor for pagination. Returns templates after this cursor position.
Number of templates to return per page (1-100). Defaults to 50.
Cursor for pagination. Returns templates before this cursor position.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_LIST_USERSRetrieve all users in the workspace. Returns user profiles including names, emails, roles, and contact info. Supports pagination for large workspaces. Use cases: - Get a directory of all workspace members - Find user IDs for other API operations - Audit user roles and permissions
Input parameters
Cursor for pagination - user ID after which to return results.
Number of users to return per page (1-100). Defaults to 50 if not specified.
Cursor for pagination - user ID before which to return results.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_LIST_WEBHOOKSTool to list all webhooks configured in the workspace. Use this tool to: - Retrieve all active and paused webhooks - Get webhook IDs for use with update or delete operations - Check webhook status and event subscriptions Supports pagination via 'limit', 'after', and 'before' parameters.
Input parameters
Pagination cursor for older webhooks. Provide a webhook ID to retrieve the next page of results (webhooks created before this ID in chronological order). Results are sorted newest-first, so 'after' moves forward through older records. Cannot be used with 'before'.
Number of webhooks to return per page (1-100). Defaults to 50.
Pagination cursor for newer webhooks. Provide a webhook ID to retrieve the previous page of results (webhooks created after this ID in chronological order). Results are sorted newest-first, so 'before' moves backward through newer records. Cannot be used with 'after'.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_UPDATE_CONTACTUpdate information for a specific contact in Superchat. Use this tool to modify a contact's name, gender, handles (phone/email), or custom attributes. Requires the contact_id (prefixed with 'ct_') which can be obtained from List Contacts or Create Contact. Examples: - Update first name: {"contact_id": "ct_abc123", "first_name": "Jane"} - Update gender: {"contact_id": "ct_abc123", "gender": "female"} - Update phone handle: {"contact_id": "ct_abc123", "handles": \[{"type": "phone", "value": "+1234567890"}\]}
Input parameters
Gender of the contact.
List of contact handles to update. Only phone and email handles are supported. Include 'id' to update existing handles.
Last name of the contact.
Unique identifier of the contact to update, prefixed with 'ct_'. Example: 'ct_abc123'.
First name of the contact.
List of custom attributes to update. Each attribute needs an 'id' and 'value'.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SUPERCHAT_UPDATE_WEBHOOKUpdate an existing webhook's target URL and/or event subscriptions. Use this tool to: - Change the webhook delivery URL - Add or remove event subscriptions - Update event types the webhook listens to Note: Webhook status (ACTIVE/PAUSED) is automatically managed by the API and cannot be manually changed. Webhooks become PAUSED after 7 days of consistent delivery failures.
Input parameters
New target URL for the webhook. Must use HTTPS protocol. If omitted, the existing URL is preserved.
List of event types to subscribe to. Valid events: 'message_inbound', 'contact_updated', 'contact_created', 'message_outbound', 'message_failed', 'note_created', 'conversation_done', 'conversation_opened', 'conversation_snoozed'. If omitted, the existing events are preserved.
Unique identifier of the webhook to update, prefixed with 'wh_' (e.g., 'wh_abc123').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
No publicly available marketplace agent is found using this tool yet. There are 75 agents privately built on Nagent that already use Superchat.
Build on Nagent
Connect Superchat to any Nagent agent in minutes — no API key management, no boilerplate. Just configure and deploy.
The five questions agent builders ask before adopting a new integration.
Open the External Integrations panel inside Nagent (app.nagent.ai/externalIntegration), find Superchat, and click "Connect Now." You'll authenticate with an API key — Nagent handles credential storage and refresh automatically. Once connected, Superchat is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once Superchat is connected, you configure its 17 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop Superchat steps into any workflow visually. Pick an action (e.g., one of those listed above), fill in the inputs (Helix knows the required vs. optional schema for each parameter), and connect it to upstream/downstream steps. Triggers run as the entry point of an agent, so when a Superchat event fires, the agent kicks off automatically.
Every Superchat action and trigger ships with a fully-typed schema — input parameters with name, type, required flag, and description, plus the output payload shape. The schemas are documented in the sections above. Helix uses these schemas to validate your configuration at build time and to type-check the data flowing between steps.
Yes. While Superchat ships with 17 pre-built team chat actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching Superchat together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build Superchat-based workflows tailored to your business.