# How to Hand Off Instagram AI Conversations to a Human in ZazzyAgent

AI should handle repetitive conversations.

It should not be forced to handle situations that require a real person.

Examples include:

*   Customer explicitly asks for a human.
    
*   High-value lead is ready to buy.
    
*   Complaint requires judgement.
    
*   Special request isn't covered by Knowledge.
    
*   Complex issue needs staff intervention.
    

ZazzyAgent lets AI Agents hand conversations to people using supported human-assignment actions.

## Why human handoff matters

A good AI Agent shouldn't say:

> I can't help you.

and leave the customer stuck.

It should know when to escalate.

A better experience is:

> I'll connect you with our team so they can help you with that.

Then assign the conversation.

## When should an Instagram AI Agent hand off?

Create explicit rules.

For example:

> If the customer asks to speak to a human, assign the conversation to support.

Another:

> If the customer is ready to purchase, assign the conversation to sales.

Another:

> If the issue cannot be answered using Knowledge, escalate rather than inventing an answer.

## Assign to a team role

Use:

```text
##assign_human_role## : ID
```

This is useful when several team members handle the same type of conversation.

For example:

> Sales Team

The conversation can be assigned according to your configured team-routing setup.

## Assign to one person

Use:

```text
##assign_human_member## : ID
```

This is useful when a conversation should always go to a particular person.

For example:

> Enterprise Sales Manager

## What should happen before handoff?

The AI should collect useful context where appropriate.

Example:

Customer:

> I need a custom enterprise solution.

AI:

> I'd be happy to connect you with our enterprise team. What is your company name and approximate requirement?

Customer provides the information.

Then:

**Save information**

→ **Assign human**

Now the human agent receives a conversation that already has useful context.

## Don't interrogate before handoff

If the customer says:

> I want to speak to someone.

don't respond with ten additional qualification questions.

A simple handoff may be better.

The goal is:

> **Collect useful context without creating friction.**

## Handoff for sales

Example:

```text
Instagram DM
   ↓
AI Sales Agent
   ↓
Customer:
"I want to buy this."
   ↓
AI confirms interest
   ↓
Assign Sales Team
   ↓
Human takes over
```

## Handoff for support

Example:

```text
Customer:
"I need help with an unusual issue."
        ↓
AI checks Knowledge
        ↓
Not covered
        ↓
Human Support
```

## Handoff after qualification

This is common in lead generation.

The AI can:

1.  Understand requirement.
    
2.  Collect basic lead data.
    
3.  Save the data.
    
4.  Add a label.
    
5.  Assign sales.
    

The human then starts with context rather than asking:

> What are you looking for?

from the beginning.

## Tell the AI when NOT to hand off

Over-escalation can be just as problematic.

Don't instruct the AI:

> Transfer every customer.

Instead:

> Handle questions covered by Knowledge. Escalate when the customer explicitly requests a human, when the issue requires a decision the AI cannot make, or when the relevant information is unavailable.

## Use human handoff with specialist agents

A multi-agent Instagram setup might look like:

```text
Instagram
   ↓
Lead Agent
   ↓
Qualified?
   ↓
Sales Agent
   ↓
Ready to buy?
   ↓
Human Sales Team
```

And:

```text
Instagram
   ↓
Support Agent
   ↓
Complex complaint?
   ↓
Human Support Team
```

## Keep the customer context

Before handoff, save useful information where appropriate.

For example:

*   Name
    
*   Requirement
    
*   Budget
    
*   Lead stage
    
*   Issue type
    

This makes the handoff much more effective.

## Add a label before handoff

You can add an internal classification such as:

> Human Required

or:

> Hot Lead

Then assign the conversation.

That makes the conversation easier to identify in the inbox.

## Tell the customer what is happening

The AI should not disappear silently.

A simple message is enough:

> I'll connect you with our sales team.

or:

> I'll pass this to our support team so they can take a closer look.

## Test your handoff

Test at least:

### Explicit request

> I want to speak to a person.

### High-intent buyer

> Send me the payment details. I'm ready to buy.

### Complex support

> Your normal solution didn't work and I need someone to investigate.

### Unknown question

Ask something that isn't covered by Knowledge.

### Normal FAQ

> What are your opening hours?

The FAQ should normally remain with the AI.

## Common handoff mistakes

### AI keeps replying after assignment

Check the agent's routing and handoff logic.

### Wrong team receives the conversation

Check the role/member assignment.

### Human receives no context

Save useful information before the handoff.

### AI escalates everything

Make the escalation conditions more specific.

## The ideal handoff

```text
AI understands
     ↓
AI solves when possible
     ↓
AI collects useful context
     ↓
AI identifies need for human
     ↓
Assign correct team
     ↓
Human continues conversation
```

The objective isn't to remove humans from Instagram.

It's to make sure humans spend their time on conversations that actually need them.
