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