# New payout request This webhook is fired whenever a user creates a payout request in Influencer Hero. The request body contains all the details of the requested payout as well as minimal information about the associated deal. Security / Verification - Each request includes a timestamp (X-InfluencerHero-Timestamp) and an HMAC-SHA256 signature (X-InfluencerHero-Signature) in the headers. - The payload can be used along with the secret key your system has stored (provided by Influencer Hero) to verify authenticity of the request. Endpoint: POST new_payout_request 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): - `payout_information` (object, required) Key information about the requested payout. - `payout_information.payout_comment` (string, required) A comment or note associated with the payout. - `payout_information.brand_id` (string, required) Identifier for the brand requesting or associated with the payout. - `payout_information.payout_currency` (string, required) The currency in which the payout is requested (e.g., USD). - `payout_information.payout_amount` (number, required) The numerical value of the payout. - `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 - `deal_id` (string, required) Internal ID of the deal for reference. ## Response 200 fields