v1
latestOpenAPI 3.0.02026-08-0622087.9 KBGong
Get employees under a manager
Returns a paginated list of unique employee emails whose calls are associated with the given manager email.
get/api/gong/employees-by-manager
Query parameters
manager_emailstring required
Example:manager@example.com
Manager email address to filter by (exact match)
pageinteger
Example:1
Page number
per_pageinteger
Example:10
Number of results per page
Response
Paginated list of unique employee emails under the given manager
Example response
{
"success": true,
"data": [
"employee@example.com"
],
"meta": {
"total": 8,
"per_page": 10,
"current_page": 1,
"last_page": 1
}
}