Skip to content

Function: getMemberCustomBoardBackground()

ts
function getMemberCustomBoardBackground(client, parameters): Promise<{
  attribution?:   | {
     license?: string | null;
     name?: string | null;
     url?: string | null;
   }
     | null;
  bottomColor?: string | null;
  brightness?: string | null;
  color?: string | null;
  darkColor?: string | null;
  darkFullSizeUrl?: string | null;
  emoji?: string | null;
  fullSizeUrl?: string | null;
  id: string;
  pack?:   | {
     name?: string;
   }
     | null;
  scaled?: object[];
  tile?: boolean;
  topColor?: string | null;
  type?: string | null;
  version?: number;
}>;

Defined in: api/members.ts:378

Get a specific custom board background

Parameters

ParameterTypeDescription
clientClient-
parameters{ id: unknown; idBackground: unknown; }-
parameters.idunknownThe ID or username of the member
parameters.idBackgroundunknownThe ID of the custom background

Returns

Promise<{ attribution?: | { license?: string | null; name?: string | null; url?: string | null; } | null; bottomColor?: string | null; brightness?: string | null; color?: string | null; darkColor?: string | null; darkFullSizeUrl?: string | null; emoji?: string | null; fullSizeUrl?: string | null; id: string; pack?: | { name?: string; } | null; scaled?: object[]; tile?: boolean; topColor?: string | null; type?: string | null; version?: number; }>