Function: getEnterpriseAdmins()
ts
function getEnterpriseAdmins(
client,
parameters,
options?): Promise<{
fullName?: string;
id: string;
username?: string;
}>;Defined in: api/enterprises.ts:91
Get an enterprise's admin members.
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { fields?: string; id: string; } | - |
parameters.fields? | string | Any valid value that the nested member field resource accepts. |
parameters.id? | string | ID of the enterprise to retrieve. |
options? | RequestOptions | - |
Returns
Promise<{ fullName?: string; id: string; username?: string; }>