API documentation for the Influencer Hero platform.
- Get Deal Information
Create Note
Create Task
Update Deal Stage
Update Deal Info
Enable UGC Capture
Get Deal Information
Influencer Hero API (1.4.2)
Download OpenAPI description
Overview
URL
Influencer Hero Support
Languages
Servers
https://api.influencer-hero.com/
- https://api.influencer-hero.com/v1/crm/get_deal_details
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.influencer-hero.com/v1/crm/get_deal_details?influencer_handle=therock&deal_id=ETUNQ6ZTW1' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'Response
application/json
{ "deal_info": { "id": "ETUNQ6ZTW1", "influencer_handle": "therock", "brand_id": 4819, "is_active": true } }
- https://api.influencer-hero.com/v1/crm/create_note
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.influencer-hero.com/v1/crm/create_note \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"deal_id": "ETUNQ6ZTW1",
"note_description": "Spoke with influencer, they are interested in the campaign."
}'Response
application/json
{ "message": "Successfully created note" }
Bodyapplication/jsonrequired
The type of task. Use "todo_task" for a standard task or "wait_task" for a waiting/follow-up task.
Enum"todo_task""wait_task"
Example: "todo_task"
A detailed description of the task.
Example: "Confirm that the product was received and schedule the content creation call."
- https://api.influencer-hero.com/v1/crm/create_task
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.influencer-hero.com/v1/crm/create_task \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"deal_id": "ETUNQ6ZTW1",
"tasktype": "todo_task",
"task_title": "Follow up on product shipment",
"task_description": "Confirm that the product was received and schedule the content creation call.",
"deadline": "25-12-2025",
"assigned_to": "user_123"
}'Response
application/json
{ "message": "Successfully created task" }
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