Setup

To send S2S requests to Ingets Labs, please follow the below API request details.

Request URL

https://:tenantDomain/s2s/2024-07/:vendorId/:projectId/:envId/:envName/:eventName

Copy

tenantDomain: <Tenant Domain that is pre-shared with the developer>
vendorId: <Vendor ID that is pre-shared with the developer>
projectId: <Project ID that is pre-shared with the developer>
envId: <Environment ID that is pre-shared with the developer>
envName: <Environment Name that is pre-shared with the developer>
eventName: <Pre-defined Event Name specified in the Tracking Events section>

Request Headers

Content-Type: text/plain
x-client-id: <pre-shared api client id>
x-api-key: <pre-shared api secret>

Request Body

{
        event_id: "<Unique ID representing the event. E.g: UUID>",
        state_token: "<cart token for shopify>",
        event_hash: "<MD5 of state_token + event_name + payload objects>",
        payload: {
            <Please refer to Tracking Events section for the event specific payload>
        }
}

Last updated