Hi there,
According to docs , GET /admins should return Admin Object which includes 'job_title' field.
But it doesn't.
Here are the corresponding requests:
1) /admins endpoint (no job_title)
```
GET https://api.intercom.io/admins/p>
{
"type": "admin.list",
"admins": o
{
"type": "admin",
"email": "admin@mail.com",
"id": "4325747",
"name": "Admin Admin",
"away_mode_enabled": false,
"away_mode_reassign": false,
"has_inbox_seat": true,
"team_ids": o]
},
{
"type": "admin",
"email": "operator+ep13p0k7@intercom.io",
"id": "4427542",
"name": "Operator",
"away_mode_enabled": false,
"away_mode_reassign": false,
"has_inbox_seat": false,
"team_ids": o]
}
]
}
```
2) /admin/id endpoint (job_title is present)
```
{
"type": "admin",
"id": "4325747",
"name": "Admin Admin",
"email": "admin@mail.com",
"away_mode_enabled": false,
"job_title": "job",
"away_mode_reassign": false,
"has_inbox_seat": true,
"team_ids": u]
}
```
Thanks in advance