Most. Help

Snapchat Conversions API GTM: Server-Side Delivery Through sGTM

Published Sep 13, 20263 min readIntermediate
Hand-drawn server box with a ghost-like window sending an orange event tag along a dotted pipe, meaning Snapchat Conversions API through sGTM
What you'll learn
  • Why the custom template must clear the match key gate first
  • How the Snap payload maps from the sGTM event model
  • Where sc_click_id and client_dedup_id come from server-side
  • How the 37-day window changes queue discipline versus other networks
Intermediate

Snapchat Conversions API GTM: Server-Side Delivery Through sGTM

Snapchat Conversions API GTM delivery is a custom server-side template job: sGTM ships no native Snap integration, and the template API's sendHttpRequest is the documented way to POST the Snap payload from your own container. Snap adds two requirements that shape the template design before any mapping is written - the match key gate and cross-channel deduplication.

Clear the Match Key Gate First

Snap rejects events without at least one match parameter outright, so the template's first responsibility is assembling user_data: hashed email or phone captured client-side, or IP address with user agent where the container preserves them. Normalization precedes hashing, per Snap's field-by-field examples. Only after the match key is guaranteed does the rest of the payload matter - and Snap recommends passing all available parameters, not just one.

Mapping the Event Model to Snap's Payload

Snap fieldSource in the sGTM event model
event typeMapped from the inbound event to the documented enum, or CUSTOM_EVENT_1-5
hashed identifiersuser_data fields, SHA-256 after normalization
sc_click_idExtracted from the landing URL's &ScCid= parameter captured at click time
client_dedup_idA value identical across pixel, SDK, and API for the same event
transaction_idThe order-level identifier for purchase events
page_urlThe full landing URL, encouraged alongside the click ID

The two identifiers carry the setup. sc_click_id only arrives if the client captured the &ScCid= parameter - the same capture-at-landing discipline as every other network's click ID. client_dedup_id must equal what the Snap pixel emitted for the same event; a template that invents fresh values per send converts the redundant pixel-plus-API setup into a double count. The identifier taxonomy is in match keys and the parameter matrix.

The 37-Day Window Changes Queue Discipline

The generous timestamp window makes sGTM queueing less fragile than on Meta's seven-day clock: a container that was down for a week can still flush legitimately. Deduplication, however, stays at the 48-hour client_dedup_id scope, so queued sends keep their original dedup values. Error behavior - the match key gate above all - is covered in Snapchat Conversions API errors; the cluster map is in the complete guide, and teams preferring to own only the postback hand the payload to MOST, with Pixel Activator for single manual tests.

Frequently asked questions

Sources

Sources

Conversion delivery tools
  • Manual testing and validation: Pixel Activator fires free test events while you tune parameters.
  • Automated delivery: Most routes conversions from your tracker or CRM continuously, with deduplication and retries handled.
Was this guide helpful?
Author
Most Team
Справочная служба

Официальные руководства и глоссарий для платформы Most и Активатора пикселей.

Topic
Snapchat Conversions API: The Complete Guide
Main article of the topic
Related articles

Related guides