Skip to main content
Altcraft Docs LogoAltcraft Docs Logo
User guide iconUser guide
Developer guide iconDeveloper guide
Admin guide iconAdmin guide
English
  • Русский
  • English
Login
    User API documentationAPI interactionMatching
      Profilesarrow
    • Import profileUpdate profileImport multiple profilesUpdate multiple profilesAdd multiple profilesAdd profile to databaseQuick profile importImport profile to RabbitMQGet profile dataUploading profiles to a fileSuspend all database profilesUnsuspend all profiles in a databaseDelete profileSubscription fields functional updateDatabase fields functional updateMerging multiple profilesUnsubscribe profile from resourceProfile splitting
        Subscriptionsarrow
      • Add or edit subscriptionGet all profile subscriptionsGet all subscriptions from multiple profilesGet profile subscriptionDelete profile subscriptionRestore deleted subscriptionSuspend all subscriptionsUnsuspend all suspended subscriptions
        Action historyarrow
      • Get profile action historyGet multiple profiles action history
        Profile relationsarrow
      • Attach relationDetach relationModify relation propertiesOverwrite relation propertiesGet profile relations infoGet profile relations info
      Get data for multiple profiles
      Databasesarrow
    • Get database statisticsUpdate statistics on databaseGet database listGet database informationGet database fieldsDatabase wipe
      Resourcesarrow
    • Get resource statisticsUpdate statistics on resourceGet resources listGet resource informationGet resource subscription fields
      Segmentsarrow
    • Get statistics on resourceUpdate statistics on segmentAdd or remove profileGet profile data in a static segmentCreate segmentUpdate segmentGet segment informationGet segments listDelete segment
      Suppression listsarrow
    • Create suppression listUpdate suppression listGet suppression list infoGet the list of suppression listsDelete suppression listUpload suppression list data to file
        Suppression list actionsarrow
      • Check if email is suppressedAdd email to suppression listAdd multiple emails to suppression listRemove email from suppression listRemove all emails from suppression listCheck if domain is suppressedAdd domain to suppression listAdd multiple domains to suppression listRemove domain from suppression listRemove all domains from suppression listCheck if phone number is suppressedAdd phone number to suppression listAdd multiple phones to suppression listRemove phone number from suppression listRemove all phone numbers from suppression list
      Templates and fragmentsarrow
    • Get templates listGet template infoDelete templateAdd templateUpdate templateChannel object
      Campaignsarrow
    • Get campaign informationGet campaign listActivate campaignComplete campaignDeactivate campaignGet campaign status
      Mailingsarrow
    • Activate mailingDeactivate mailingGet mailing listGet mailing informationGet mailing logClone mailingDelete mailingGet mailing status
        Broadcast mailingsarrow
      • Get broadcasts listGet broadcast informationCreate broadcast mailingUpdate broadcast mailingLaunch a broadcast mailing
        Regular mailingsarrow
      • Get regular mailings listGet regular mailing informationCreate regular mailingUpdate regular mailingLaunch a regular mailing
        Trigger mailingsarrow
      • Get trigger mailings listGet trigger mailing informationCreate trigger mailingUpdate trigger mailingTrigger launch (API call)Profile import + trigger mailing launchTask for bulk trigger launchTask for bulk profiles import + trigger launchBulk trigger launchBulk profiles import + trigger mailing launchClone a trigger mailingData array
      Automation scenariosarrow
    • Engage profile in scenarioImport and engage profile in scenarioBatch import and engage profiles in a scenarioTask for batch import and engaging profiles in the scenarioGet scenarios listActivate scenarioDeactivate scenario
      Loyalty Programsarrow
    • Get profile tier in a loyalty programExport points transactionsExpiring points for a periodGet profile account transactionsGet trigger promotions listAccrue points to a memberRedeem member pointsCommit temporary transactionPreliminary Order CalculationOrder ConfirmationRoll back temporary transactionCancel points transactionGet points account balanceRegister member in a loyalty programRemove member from loyalty program
      Promo codesarrow
    • Import promo codesGet promo code informationActivate promo codeUpdate promo codeAttach promo codeDetach promo codeGet all promo codes
      Goalsarrow
    • Goals and goal values registration
      Application push notificationsarrow
    • Processing and adding a subscriptionAdd app push events
      Marketarrow
      • Market objectsarrow
      • Order data objectProduct data objectSKU data objectCategories arrayCustom fields array
        Ordersarrow
      • Import order and item statusesGet orders listDelete orderGet order statusUpdate order line status
        Products and SKUarrow
      • Import products, SKUs and categoriesImport SKUs and categoriesGet products listGet SKUs listDelete productsDelete SKU
      Analytic reportsarrow
    • Get summary reportGet soft bounces reportGet undeliveries report
      SendersDevarrow
    • Get senders list
        Virtual senders (Smart accounts only)arrow
      • Get virtual senders listGet virtual sender informationClone virtual senderCreate virtual senderUpdate virtual senderDelete virtual sender
      External datatables queriesarrow
      • Segmentation queriesarrow
      • Add segmentation queryUpdate segmentation queryGet segmentation query informationGet segmentation queries listDelete segmentation query
        Template queriesarrow
      • Add template queryUpdate template queryGet template query informationGet template queries listDelete template query
      Objectsarrow
    • AKMTA objectContent objectEmail rule objectFile objectProfile data objectSMS rule objectSender objectSender typesStart schedule objectSubscription objectTrigger types
      Miscellaneousarrow
    • Upload fileGet message web versionPush providersDeduplication of requestsHow to send API request with RabbitMQList of gender identificationsObtain valid values for fields: browsers, devices, tz, oses, languages
    Importing the API collection in PostmanList of API endpoints
      SDKarrow
      • mSDKarrow
        • Androidarrow
        • Quick StartSDK FunctionalitySDK ConfigurationPublic SDK API
            Provider configuration androidarrow
          • Firebase Cloud MessagingHuawei Mobile ServicesRuStore
          iOSarrow
        • Quick StartSDK FunctionalitySDK ConfigurationPublic SDK API
            Provider configurationarrow
          • Apple Push Notification ServiceFirebase Cloud MessagingHuawei Mobile Services
          React Native (Android/iOS)arrow
        • Quick StartSDK ConfigurationSDK FunctionalityPublic SDK APIProvider setup
        Managing JWT and Role Token
  • Miscellaneous
  • Deduplication of requests

Deduplication of requests

Description​

Repeat requests are API requests that contain the same headers and the same data as the original request. A repeated request can be sent if the connection failed at the moment of receiving the data.

The platform will not accept a repeated request if it changes the data in order to avoid duplicate events. This scheme works by default and does not require additional configuration. By default, the platform deduplicates within 1 day from the first request.

The platform performs deduplication according to the following algorithm:

  • Checking for the presence of Request-ID header
  • If Request-ID is not specified, the checksum of request body and headers is checked

It should be noted that not all requests support deduplication with checksum, and if no Request-ID is specified in such requests, then no duplication check will be performed. You can find a list of such requests in the table below.

info

Different request sending clients may add their own system headers or other information to the request. This may cause failure of deduplication.

How do you know if the request was taken as a duplicate one?​

The response to the repeated request will be the same as the response to the original one. However, the repeated request will contain additional headers:

Duplicate-Key: NeOScRqBgsqj67CR5dYcqvcmPZA=
Duplicate-Request: true

The Duplicate-Key header consists of the Request-ID of the request and the sender token. If Request-ID is not passed, the header will store the hashed request data.

How to send a request so that it is not taken as a duplicate one?​

It is recommended to mark each request with a unique identifier. In this way when you change the identifier, you will be able to execute requests, even if they contain the same data.

There are 2 ways to do it:

  • Change the data in the request body or URL, for example, &request_id=12345

  • Add the Request-ID header, for example Request-ID: a0fe37f2-b4e0-4e28-a328-4ec7461604fc

API requests that have deduplication​

All requests that modify data or activation / launch of entities are checked for repetitions:

CategoryRequest
Profiles (deprecated methods)/v1.0/lists/:list_id/lead/unconfirm
/v1.0/lists/:list_id/lead/unsubscribe
/v1.0/lists/:list_id/lead/tags_add
/v1.0/lists/:list_id/lead/tags_remove
/v1.0/lists/:list_id/lead/subscribe
/v1.0/lists/:list_id/lead/complain
/v1.0/lists/:list_id/suspend_all
/v1.0/lists/:list_id/unsuspend_all
/v1.0/lists/:list_id/import
Integrations/integrations/lpgenerator/profile_import
/integrations/tilda/profile_import
/integrations/any/profile_import
Suppression lists/v1.1/suppresses/add
/v1.1/suppresses/update
/v1.1/suppresses/domain_add
/v1.1/suppresses/domains_add
/v1.1/suppresses/domain_remove
/v1.1/suppresses/domains_remove
/v1.1/suppresses/email_add
/v1.1/suppresses/emails_add
/v1.1/suppresses/email_remove
/v1.1/suppresses/emails_remove
/v1.1/suppresses/phone_add
/v1.1/suppresses/phones_add
/v1.1/suppresses/phone_remove
/v1.1/suppresses/phones_remove
Subscriptions/v1.1/subscriptions/set
/v1.1/subscriptions/suspend_all
/v1.1/subscriptions/unsuspend_all
/v1.1/subscribers/import
/v1.1/subscribers/update
Segments/v1.1/segments/add
/v1.1/segments/update
/v1.1/segments/refresh_counters
Mailings/v1.1/campaigns/deactivate
/v1.1/campaigns/activate
/v1.1/campaigns/clone
Trigger mailings/v1.1/campaigns/triggers/add
/v1.1/campaigns/triggers/update
/v1.1/campaigns/triggers/start
/v1.1/campaigns/triggers/import_and_start
/v1.1/campaigns/triggers/clone
/v1.1/triggers/start_batch (only Request-ID method)
/v1.1/triggers/start_batch_task (only Request-ID method)
/v1.1/triggers/import_and_start_batch (only Request-ID method)
/v1.1/triggers/import_and_start_batch_task (only Request-ID method)
Broadcasts/v1.1/campaigns/broadcasts/add
/v1.1/campaigns/broadcasts/update
/v1.1/campaigns/broadcasts/start
Regular mailings/v1.1/campaigns/regulars/add
/v1.1/campaigns/regulars/update
/v1.1/campaigns/regulars/start
Senders/v1.1/admin/senders/queue/hold
/v1.1/admin/senders/queue/unhold
/v1.1/admin/senders/queue/purge
/v1.1/admin/senders/update
/v1.1/admin/senders/add_to_account
/v1.1/admin/senders/add
/v1.1/admin/vsenders/add
/v1.1/admin/vsenders/update
/v1.1/admin/vsenders/clone
Nodes/v1.1/admin/nodes/mta/start
/v1.1/admin/nodes/mta/stop
Static segments/v1.1/profiles/segstatic/add
/v1.1/profiles/segstatic/remove
Profiles/v1.1/profiles/add
/v1.1/profiles/update
/v1.1/profiles/import
/v1.1/profiles/add_batch
/v1.1/profiles/update_batch
/v1.1/profiles/import_batch
Promocodes/v1.1/promocodes/attach
/v1.1/promocodes/activate
/v1.1/promocodes/import
/v1.1/promocodes/detach
/v1.1/promocodes/update
Relations/v1.1/relations/attach
/v1.1/relations/detach
/v1.1/relations/edit
/v1.1/relations/strengthen
Profiles databases/v1.1/databases/wipe
/v1.1/databases/refresh_counters
Virtual senders/v1.1/vsenders/add
/v1.1/vsenders/update
/v1.1/vsenders/clone
Scenarios/v1.1/workflows/start
/v1.1/workflows/import_and_start
/v1.1/workflows/import_and_start_batch (only Request-ID method)
/v1.1/workflows/import_and_start_batch_task (only Request-ID method)
Push event registration/v1.1/pushes/post_events
/v1.1/pushes/crypto_post_events
Message templates/v1.1/templates/add
/v1.1/templates/update
/v1.1/templates/delete
Resources/v1.1/resources/push_subscribe
/v1.1/resources/refresh_counters
Data tables/v1.1/datatables/query_templates/update
/v1.1/datatables/query_templates/delete
/v1.1/datatables/query_templates/add
/v1.1/datatables/query_segments/update
/v1.1/datatables/query_segments/delete
/v1.1/datatables/query_segments/add
Last updated on Mar 12, 2026
Previous
Push providers
Next
How to send API request with RabbitMQ
  • Description
  • How do you know if the request was taken as a duplicate one?
  • How to send a request so that it is not taken as a duplicate one?
  • API requests that have deduplication
© 2015 - 2026 Altcraft, LLC. All rights reserved.