API documentation for the Influencer Hero platform.
/
Update Deal Stage
Influencer Hero API (1.4.2)
Download OpenAPI description
Overview
URL
Influencer Hero Support
Languages
Servers
https://api.influencer-hero.com/
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 }
Bodyapplication/jsonrequired
If true, only updates the is_active status and ignores other fields.
Example: false
The updated deal information.
Internal notes about the deal.
Example: "Great engagement on recent posts"
- https://api.influencer-hero.com/v1/crm/update_deal_info
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.influencer-hero.com/v1/crm/update_deal_info \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"deal_id": "ETUNQ6ZTW1",
"status_update_only": false,
"new_deal_info": {
"is_active": true,
"main_name": "therock",
"notes": "Great engagement on recent posts",
"email": "contact@therock.com",
"other_emails": "manager@therock.com",
"first_name": "Dwayne",
"last_name": "Johnson",
"address_line": "123 Main St",
"city": "Los Angeles",
"postcode": "90001",
"region": "California",
"country": "USA",
"phone_nr": "+1234567890",
"has_manager": true,
"manager_firstname": "John",
"manager_lastname": "Smith",
"manager_email": "john.smith@agency.com",
"other_information": "Preferred contact via manager"
}
}'Response
application/json
{ "message": "Successfully updated deal info", "deal_info": { "deal_id": "ETUNQ6ZTW1", "main_name": "therock", "email": "contact@therock.com" } }
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