# Update Deal Info Updates the contact and profile information for an influencer deal. Use status_update_only: true to only update the active status without modifying other fields. Endpoint: POST /v1/crm/update_deal_info Version: 1.4.2 Security: ApiKeyAuth ## Request fields (application/json): - `deal_id` (string, required) The ID of the deal to update. Example: "ETUNQ6ZTW1" - `status_update_only` (boolean) If true, only updates the is_active status and ignores other fields. - `new_deal_info` (object, required) The updated deal information. - `new_deal_info.is_active` (boolean) Whether the deal is active. Example: true - `new_deal_info.main_name` (string) The influencer's display name or handle. Example: "therock" - `new_deal_info.notes` (string) Internal notes about the deal. Example: "Great engagement on recent posts" - `new_deal_info.email` (string) Primary email address. Example: "contact@therock.com" - `new_deal_info.other_emails` (string) Additional email addresses. Example: "manager@therock.com" - `new_deal_info.first_name` (string) Influencer's first name. Example: "Dwayne" - `new_deal_info.last_name` (string) Influencer's last name. Example: "Johnson" - `new_deal_info.address_line` (string) Street address. Example: "123 Main St" - `new_deal_info.city` (string) City. Example: "Los Angeles" - `new_deal_info.postcode` (string) Postal code. Example: "90001" - `new_deal_info.region` (string) State or region. Example: "California" - `new_deal_info.country` (string) Country. Example: "USA" - `new_deal_info.phone_nr` (string) Phone number. Example: "+1234567890" - `new_deal_info.has_manager` (boolean) Whether the influencer has a manager. Example: true - `new_deal_info.manager_firstname` (string) Manager's first name. Example: "John" - `new_deal_info.manager_lastname` (string) Manager's last name. Example: "Smith" - `new_deal_info.manager_email` (string) Manager's email address. Example: "john.smith@agency.com" - `new_deal_info.other_information` (string) Any other relevant information. Example: "Preferred contact via manager" ## Response 200 fields (application/json): - `message` (string) - `deal_info` (object) The updated deal information. ## Response 400 fields ## Response 404 fields