Skip to content

Influencer Hero API (1.4.2)

API documentation for the Influencer Hero platform.

Download OpenAPI description
Languages
Servers
https://api.influencer-hero.com/

Test endpoints

Endpoints to test authenticated and public requests

Operations
Operations
Operations
Operations
Operations
Operations

Affiliate Tracking

[Advanced] Server-side endpoints for tracking affiliate actions and performance. For most use cases, the client-side tracking script will be sufficient.

Operations
Operations

Request

Returns all webhooks configured for your account.

Security
ApiKeyAuth
curl -i -X GET \
  https://api.influencer-hero.com/v1/account/get_webhooks \
  -H 'X-API-KEY: YOUR_API_KEY_HERE'

Responses

Successfully retrieved webhooks.

Bodyapplication/json
webhooksArray of objects
Response
application/json
{ "webhooks": [ { … }, { … } ] }

Request

Deletes an existing webhook.

Security
ApiKeyAuth
Bodyapplication/jsonrequired
webhook_urlstringrequired

Webhook URL to delete.

Example: "https://example.com/webhook"
webhook_typestringrequired

Type of webhook. Must be one of ["product_sent","update_discount_code","update_commission","update_custom_link", "new_payout_request","new_email_sent","new_influencer_reply", "new_influencer_post","new_max_bid","new_influencer_order"].

Example: "new_influencer_reply"
curl -i -X DELETE \
  https://api.influencer-hero.com/v1/account/delete_webhook \
  -H 'Content-Type: application/json' \
  -H 'X-API-KEY: YOUR_API_KEY_HERE' \
  -d '{
    "webhook_url": "https://example.com/webhook",
    "webhook_type": "new_influencer_reply"
  }'

Responses

Successfully deleted webhook.

Bodyapplication/json
Response
application/json
{ "message": "Successfully deleted webhook." }

Webhooks

Receive real-time notifications when events occur in your account. Webhooks are secured via HMAC-SHA256 signatures.

Webhooks