# New Influencer Order This webhook is triggered when a new order is attributed to an influencer (via discount code or affiliate link). The receiving endpoint can use X-InfluencerHero-Timestamp and X-InfluencerHero-Signature to verify authenticity via HMAC-SHA256. Endpoint: POST new_influencer_order Version: 1.4.2 Security: ApiKeyAuth ## Header parameters: - `X-InfluencerHero-Timestamp` (string, required) Unix timestamp (in seconds) at which the webhook was sent. - `X-InfluencerHero-Signature` (string, required) HMAC-SHA256 signature computed using your webhook signing key and the request body. ## Request fields (application/json): - `order_information` (object, required) Details about the order attributed to the influencer. - `order_information.order_id` (string) Unique identifier for the order. - `order_information.order_name` (string) Human-readable order name or number. - `order_information.order_revenue` (number) Total revenue of the order in the original order currency. - `order_information.order_currency` (string) Currency code of the order (e.g., USD, EUR). - `order_information.account_currency` (string) The account's default currency code (e.g., USD, EUR). - `order_information.account_currency_revenue` (number) Order revenue converted to the account's default currency. - `order_information.paid_commission` (number) Commission amount to be paid to the influencer, in the account's default currency. - `order_information.commission_rate` (number) Commission rate applied (e.g., 0.10 for 10%). - `order_information.discount_codes` (string,null) Discount code(s) used in the order, if any. - `order_information.platform` (string) E-commerce platform where the order was placed (e.g., shopify, woocommerce). - `order_information.match_types` (string,null) How the order was attributed to the influencer (e.g., discount_code, utm_link, custom_link). - `order_information.order_timestamp` (string) Timestamp when the order was placed. - `deal_info` (object, required) A lightweight summary of the influencers deal. - `deal_info.deal_name` (string) Deal name / Influencer handle - `deal_info.is_active` (boolean) Indicates if the deal is still active. - `deal_info.dealflow_funnel_step` (integer) Funnel step of the deal in the respective dealflow (0-4) - `deal_info.dealflow_type` (string) Whether the dealflow is an outreach or relationship dealflow - `deal_info.dealflow_name` (string) Name of the dealflow - `deal_info.picture_url` (string) Influencer Profile Picture URL - `deal_info.nr_followers` (integer) Number of followers of the influencer - `deal_info.full_name` (string) Full name for the influencer, as indicated on his social media account - `deal_info.platform` (string) Indicates which social media platform is primarily used. - `deal_info.profile_url` (string) Link to the influencer's social media page - `collab_info` (object) Information about the collaboration linked to this order. - `collab_info.collab_id` (string) Unique identifier of the collaboration. - `collab_info.campaign_name` (string,null) Name of the campaign associated with this collaboration. - `collab_info.discount_code` (string,null) Discount code assigned to this collaboration. - `collab_info.custom_url` (string,null) Custom tracking URL assigned to this collaboration. - `deal_id` (string, required) Unique identifier of the deal. - `deal_url` (string, required) A direct link to view the deal inside Influencer Hero. ## Response 200 fields ## Response 4XX fields ## Response 5XX fields