curl --request GET \
--url https://api.getfernand.com/agents \
--header 'X-API-Key: <api-key>'[
{
"id": 12345,
"email": "richard.hendricks@piedpiper.com",
"is_paying": true,
"is_removed": false,
"name": "Richard Hendricks",
"firstname": "Richard",
"notification_email": "richard.piper44@gmail.com",
"timezone": "America/Los_Angeles",
"signature": "<p>Best regards,<br>Richard H.</p>",
"avatar": "https://www.gravatar.com/avatar/6d918cc24709975e61413ea4c2fb93f6?s=80&d=404",
"dark_mode": true,
"is_mfa_enabled": false,
"is_current_user": true,
"roles": [
"conversation.create",
"conversation.reply",
"teammate.invite"
],
"owner": false,
"prev_next": "historical",
"newsletter": true,
"notifications": {
"BROWSER": {
"INCOMING_EMAIL": true,
"MENTIONED": true
},
"EMAIL": {
"INCOMING_EMAIL": true,
"ASSIGNED_ACTIVITY": false
}
},
"ai_prompt_answer": "Your name is ${agent_firstname}. Reply to ${contact_name} concisely.",
"fernand_hash": "abc123def456...",
"bounce_error": "Mailbox full",
"custom_inboxes": [
{
"key": "60977abb694a6b2061de23fe26429ace",
"name": "Inbox",
"query": {
"assigned": "me+none",
"is": "opened",
"order": "priority"
}
}
],
"lock_reason": "email",
"locked_ts": 1234567890000
}
]curl --request GET \
--url https://api.getfernand.com/agents \
--header 'X-API-Key: <api-key>'[
{
"id": 12345,
"email": "richard.hendricks@piedpiper.com",
"is_paying": true,
"is_removed": false,
"name": "Richard Hendricks",
"firstname": "Richard",
"notification_email": "richard.piper44@gmail.com",
"timezone": "America/Los_Angeles",
"signature": "<p>Best regards,<br>Richard H.</p>",
"avatar": "https://www.gravatar.com/avatar/6d918cc24709975e61413ea4c2fb93f6?s=80&d=404",
"dark_mode": true,
"is_mfa_enabled": false,
"is_current_user": true,
"roles": [
"conversation.create",
"conversation.reply",
"teammate.invite"
],
"owner": false,
"prev_next": "historical",
"newsletter": true,
"notifications": {
"BROWSER": {
"INCOMING_EMAIL": true,
"MENTIONED": true
},
"EMAIL": {
"INCOMING_EMAIL": true,
"ASSIGNED_ACTIVITY": false
}
},
"ai_prompt_answer": "Your name is ${agent_firstname}. Reply to ${contact_name} concisely.",
"fernand_hash": "abc123def456...",
"bounce_error": "Mailbox full",
"custom_inboxes": [
{
"key": "60977abb694a6b2061de23fe26429ace",
"name": "Inbox",
"query": {
"assigned": "me+none",
"is": "opened",
"order": "priority"
}
}
],
"lock_reason": "email",
"locked_ts": 1234567890000
}
]If true, includes roles and owner status in the response.
Successfully retrieved the list of agents.
Unique identifier for the agent
12345
Primary email address of the agent
250"richard.hendricks@piedpiper.com"
Whether this agent occupies a paid seat in the organization
true
Whether this agent has been removed from the organization
false
Display name of the agent
250"Richard Hendricks"
First name extracted from the agent's name
"Richard"
Alternative email for receiving notifications (if different from primary email)
250"richard.piper44@gmail.com"
Agent's timezone (e.g., America/New_York, Europe/Paris)
250"America/Los_Angeles"
Email signature for the agent (HTML allowed)
"<p>Best regards,<br>Richard H.</p>"
URL to the agent's avatar image. Either at Gravatar (default) or on our CDN if imported.
250"https://www.gravatar.com/avatar/6d918cc24709975e61413ea4c2fb93f6?s=80&d=404"
Whether dark mode is enabled (null means system default)
true
Whether multi-factor authentication is enabled for this agent
false
Whether this agent is the currently authenticated user
true
List of permission roles assigned to the agent
[
"conversation.create",
"conversation.reply",
"teammate.invite"
]Whether this agent is the organization owner
false
Navigation preference for keyboard shortcuts (only for current user)
historical, natural "historical"
Whether agent is subscribed to the newsletter (only for current user)
true
Notification preferences organized by target and event (only for current user)
{
"BROWSER": { "INCOMING_EMAIL": true, "MENTIONED": true },
"EMAIL": {
"INCOMING_EMAIL": true,
"ASSIGNED_ACTIVITY": false
}
}Custom AI prompt template for generating responses (only for current user)
"Your name is ${agent_firstname}. Reply to ${contact_name} concisely."
Secure key for signing emails in the Fernand chat integration (only for current user)
"abc123def456..."
Error message if email has bounced (only for current user)
250"Mailbox full"
Custom inbox configurations (only for current user)
Show child attributes
[
{
"key": "60977abb694a6b2061de23fe26429ace",
"name": "Inbox",
"query": {
"assigned": "me+none",
"is": "opened",
"order": "priority"
}
}
]Reason account is locked (email, bounced, ban) - only for current locked user
250"email"
Unix timestamp (milliseconds) when account was locked - only for current locked user
1234567890000
Was this page helpful?