Agent Management
Invite team members, assign roles, and manage agent access to your workspace.
Overview
Agents are team members who handle conversations and tickets in ZapTicket. Each workspace can have multiple agents with different roles. Agent management is available under Settings → Team in the dashboard.
Inviting Agents
To add a new agent to your workspace, invite them by email. The invited person receives an email with a link to join the workspace. If they don't already have a ZapTicket account, they'll be prompted to create one during the invitation acceptance flow.
- Navigate to Settings → Team.
- Click Invite Agent.
- Enter the person's email address.
- Select a role: Owner or Agent.
- Click Send Invite.
Roles
ZapTicket has two roles that control what an agent can do within a workspace:
Owner
Full administrative access to the workspace. Owners can:
- Manage all conversations and tickets (view, assign, resolve)
- Invite and remove agents
- Change other agents' roles
- Access workspace settings (branding, API keys, canned responses)
- Regenerate API keys
- Deactivate agents
- Delete the workspace
Agent
Standard access for handling customer interactions. Agents can:
- View and reply to all conversations
- Assign conversations to themselves or other agents
- Create, update, and resolve tickets
- Use canned responses
- View team members (but not manage them)
- Update their own profile and notification preferences
Agents cannot:
- Invite or remove other agents
- Change roles
- Access API keys or workspace settings
- Delete the workspace
| Permission | Owner | Agent |
|---|---|---|
| Handle conversations | Yes | Yes |
| Manage tickets | Yes | Yes |
| Use canned responses | Yes | Yes |
| Invite agents | Yes | No |
| Remove/deactivate agents | Yes | No |
| Change roles | Yes | No |
| Access settings | Yes | No |
| Regenerate API keys | Yes | No |
| Delete workspace | Yes | No |
Changing an Agent's Role
Owners can change any agent's role between Owner and Agent. This is useful when promoting a trusted team member or reducing permissions for someone changing responsibilities.
- Go to Settings → Team.
- Find the agent in the list.
- Click the role dropdown next to their name.
- Select the new role.
- Confirm the change.
Deactivating an Agent
Deactivating an agent revokes their access to the workspace without deleting their account. Deactivated agents:
- Can no longer log in to the workspace.
- Are removed from the active agents list.
- Have their assigned conversations unassigned (moved to Unassigned tab).
- Retain their historical activity (messages, notes, ticket comments) for audit purposes.
- Can be reactivated later by an Owner.
Agent Profile
Each agent has a profile that's visible to visitors and other team members:
- Display name: Shown to visitors in the chat widget when replying.
- Avatar: Shown next to messages in the widget and dashboard.
- Email: Used for login and notification delivery.
- Status: Online/Offline based on dashboard connection.
Agents can update their own profile (name, avatar) from their account settings. Email changes require verification.
Managing Agents via API
curl https://api.zapticket.app/api/agents \
-H "Authorization: Bearer zt_sk_YOUR_SECRET_KEY"curl -X POST https://api.zapticket.app/api/agents/invite \
-H "Authorization: Bearer zt_sk_YOUR_SECRET_KEY" \
-H "Content-Type: application/json" \
-d '{
"email": "[email protected]",
"role": "agent"
}'curl -X POST https://api.zapticket.app/api/agents/agent_xyz/deactivate \
-H "Authorization: Bearer zt_sk_YOUR_SECRET_KEY"