API documentation for the Influencer Hero platform.
/
Create Task
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/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" }
- https://api.influencer-hero.com/v1/crm/update_dealstage
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.influencer-hero.com/v1/crm/update_dealstage \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"deal_id": "ETUNQ6ZTW1",
"new_stage": 3,
"dashboard_id": "D_FSSI4P"
}'Response
application/json
{ "message": "Deal stage successfully updated", "ugc_tracking_activated": false }
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