···91919292 This option comes with some trade-offs: MS will aggressively detect repeated tracks within a window of time that should eliminate all duplicates. However, this will also prevent *intentionally* repeated tracks from being scrobbled. See [this thread](https://github.com/FoxxMD/multi-scrobbler/pull/296#issuecomment-2970417070) for more information on how this works.
93939494+ ### Family account
9595+9696+ Multi-scrobbler can monitor listening history for accounts linked to a [Deezer Family Account](https://www.deezer.com/en/offers/family).
9797+9898+ <details>
9999+100100+ <summary>Instructions</summary>
101101+102102+ Start multi-scrobbler using the [ARL](#retrieve-arl) for the **main account**.
103103+104104+ In the logs look for **Linked Accounts** associated with the Deezer Source. It will look something like this:
105105+106106+ ```
107107+ VERBOSE: [App] [Sources] [Deezer - MyDeezer] Linked Accounts:
108108+ Name: Joe | ID: 166276334 | Private?: Yes
109109+ Name: Mary | ID: 48475231 | Private?: Yes
110110+ Name: FoxxMD | ID: 896225281 | Private?: No
111111+ Name: Cool Guy | ID: 128522478 | Private?: Yes
112112+ ```
113113+114114+ The Account **ID** you want to monitor should be set:
115115+116116+ <Tabs groupId="configType" queryString>
117117+ <TabItem value="env" label="ENV">
118118+ Set in your docker compose `environment` section:
119119+120120+ ```yaml
121121+ - DEEZER_ACCOUNT_ID=896225281
122122+ ```
123123+ </TabItem>
124124+ <TabItem value="file" label="File or AIO">
125125+ Add an `accountId` property to the `data` section
126126+ ```json
127127+ [
128128+ {
129129+ "name": "DeezerARL",
130130+ "enable": true,
131131+ "clients": [],
132132+ "data": {
133133+ "arl": "UOsRPjT3U5Dhaaup3xQ30D...",
134134+ "accountId": "896225281"
135135+ }
136136+ }
137137+ ]
138138+ ```
139139+ </TabItem>
140140+ </Tabs>
141141+142142+ Restart multi-scrobbler to start monitoring that account.
143143+144144+ :::warning[Restrictions]
145145+146146+ Deezer may not return the correct listening history under these circumstances:
147147+148148+ * The ARL used is **not** for the main account
149149+ * If you can get an ARL specifically for the linked account (login as the linked account), use that **instead** of family `accountId`
150150+ * The ARL account is private
151151+ * The linked account to be monitored ( using `accountId`) is private
152152+153153+ :::
154154+ </details>
155155+156156+157157+94158 </TabItem>
95159 <TabItem value="official" label="Official API">
96160
···3939 * @default "Mozilla/5.0 (X11; Linux i686; rv:135.0) Gecko/20100101 Firefox/135.0"
4040 */
4141 userAgent?: string
4242+4343+ /** The ID (USER_ID) of the linked account to monitor. If not set, monitors the main ARL account */
4444+ accountId?: string
4245}
43464447export interface DeezerInternalSourceConfig extends CommonSourceConfig {