Function: getAllSystemAvatars()
ts
function getAllSystemAvatars(client, parameters): Promise<{
[key: string]: unknown;
system?: object[];
}>;Defined in: src/cloud/api/avatars.ts:22
Returns a list of system avatar details by owner type, where the owner types are issue type, project, user or priority.
This operation can be accessed anonymously.
Permissions required: None.
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { type: "priority" | "user" | string & object | "project" | "issuetype"; } | - |
parameters.type | "priority" | "user" | string & object | "project" | "issuetype" | The avatar type. |
Returns
Promise<{ [key: string]: unknown; system?: object[]; }>