DocumentationDocumentation
Talk2Sync Documentation
User Documentation
Connector APIs
  • English
  • Español
Talk2Sync Documentation
User Documentation
Connector APIs
  • English
  • Español
  • User Guide Portal & API Documentation
  • User-documentation

    • User Documentation
    • Guide

      • User Guide: Introduction
      • Core Concepts
    • Talk2sync

      • Connection Buttons
      • Color Coding System
      • Issues and Alerts
      • Command Filters
      • Deleted Information Still Appears: How to Remove It
      • Deletions
    • Conexiones

      • Connection Settings
    • Fields

      • Time Based Sync
      • Data Governance
      • Special and Extra Fields
    • Productos

      • Product Fields
      • Equivalences
      • Product Search
      • Link / Unlink Products
    • Ventas

      • Fields
      • Equivalences
      • Sales Search
      • No SKU (Missing SKU)
    • Reports

      • Product Export
      • Sales Report
    • Faq

      • Amazon

        • Amazon Barcode Requirements
        • Amazon Catalog Discrepancies and ASIN Mismatches
        • Amazon Manufacturer Requirements
        • New ASIN Creation Errors and Invalid Attribute Values
        • Talk2sync, SKUs, and Product Identifiers
        • Amazon Variation Templates
      • Mercadolibre

        • Mercado Libre Official Stores
        • Mercado Libre Locations and Geographic Attributes
        • Mercado Libre Pick-up in Store
        • Mercado Libre Extra Attributes
        • Mercado Libre Image Processing and Synchronization
        • Mercado Libre Seller Unable to List Error
      • Linio

        • Linio Brand Not Registered Error
        • Linio Physical Dimensions and Weight Requirements
  • Connector APIs

    • Connector APIs
    • Quick-start

      • Introduction & Requirements
      • Add Connection
      • Configure Connection
      • Generate Keys
      • Test Your Integration
    • Webhooks

      • Webhooks API
      • Catalog

        • Webhooks: List Products
        • Webhooks: List Product by ID
        • Webhooks: Add/Update Product
      • Sales

        • Webhooks: List Orders
        • List Order by ID
        • Add/Update Order
    • Reverse-connections

      • Reverse Connections
      • Implementation-states

        • Implementation
        • Query Implementation: Products and Orders
        • Store Implementation: Products and Orders
        • Sleep and Timeouts
      • Protocol

        • Protocol
        • Overview
        • Product Upload
        • Order Upload
        • Product Download
        • Order Download
      • Rest-calls

        • REST Calls
        • Fetching-changes

          • Fetching Changes REST Calls
          • Ask if Fetching
          • Catalog

            • Push Products Page
            • Set Finish Product Pushes
          • Sales

            • Push Orders Page
            • Set Finish Order Pushes
            • Set Finish All Pushes
        • Pulling-changes

          • Pulling Changes REST Calls
          • Ask if Pulling
          • Catalog

            • Get Next Product to Pull
            • Pull Products Page
            • Notify Product Storage Success
            • Notify Product Storage Failure
            • Set Finish Product Download
          • Sales

            • Get Next Order to Pull
            • Pull Orders Page
            • Notify Order Storage Success
            • Notify Order Storage Failure
            • Set Finish Order Download
            • Transact Finish Pull

Store Implementation: Products and Orders

The store implementation is responsible for receiving updated products and orders from Talk2Sync, transforming the incoming data, and inserting or updating it in the external application.

The target system can be a legacy ERP, database, or another application. The storage operation may be performed through different integration mechanisms, including:

  • Direct database access such as JDBC or ODBC.
  • APIs such as SOAP or REST.
  • COM interfaces.
  • Filesystem-based integrations.
  • Other mechanisms supported by the target application.

The critical requirement is that the implementation must determine whether the data was actually stored or updated successfully and report the result to Talk2Sync.

Store Implementation Products

When Talk2Sync sends an updated product, the connector must:

  1. Receive the product from Talk2Sync.
  2. Transform the product into the format required by the target system.
  3. Insert the product if it does not exist, or update it if it already exists.
  4. Verify whether the operation succeeded.
  5. Report the result back to Talk2Sync.

If the storage operation fails, the connector must report the error so that Talk2Sync can retry the same insert or update during a subsequent synchronization.

Store Implementation Orders

The order storage process follows the same pattern.

When Talk2Sync sends an updated order, the connector must:

  1. Receive the order from Talk2Sync.
  2. Transform the order into the target system's format.
  3. Insert or update the order.
  4. Verify that the operation completed successfully.
  5. Report the result to Talk2Sync.

If the operation fails, the error must be reported to Talk2Sync so that the update can be retried during a later synchronization.

Why Error Reporting Is Required

The storage result is an essential part of the synchronization transaction.

When the connector reports an error, Talk2Sync knows that the operation was not completed and can attempt to send the same update again during a subsequent synchronization cycle until the storage operation succeeds.

If the connector does not report an error, Talk2Sync assumes that the storage operation succeeded. It will therefore not retry the update later.

In that situation, a subsequent synchronization may interpret the previous values as having changed again and propagate those changes to other connections configured in Talk2Sync.

Important: Always report the actual result of the storage operation. Do not acknowledge a transaction as successful unless the target system has successfully stored or updated the data.

Storage Flow

Next Steps

  • Review Query Implementation: Products and Orders to implement data retrieval and transformation.
  • Review Notify Product Storage Success for the product success notification flow.
  • Review Notify Product Storage Failure for product failures.
  • Review Notify Order Storage Success for the order success notification flow.
  • Review Notify Order Storage Failure for order failures.
Last Updated: 8/21/26, 12:13 PM
Prev
Query Implementation: Products and Orders
Next
Sleep and Timeouts