API Importk Skript Storefront zuweisung

Hallo ich schreibe gerade ein Import Skript mit Node und der Shopware 6 API.

Ich würde gerne beim Shopware Update die jeweilige Storefront (In meinem Fall das Frontend von Shopware) zuweisen.

Im Shopware Admin hab ich den visibilities parameter herausgefunden, jedoch ist mir nicht ganz klar wie ich zu der id komme?

In meinem Beispiel : 605b8bdb457f45a29f3818db258b494b

 

Danke für eure Hilfe, hier der Code der Funktion:

 

 async function updateShopwareArticle(productId,categoryId,manufacturerId,token) {
    
    const axios = require('axios');
    const data = await axios({
        method: 'patch',
            headers: {
              'Authorization': `Bearer ${token}`
            },
            url: 'http://localhost:8888/api/v1/product/'+productId,
            data: {
                categories: [{id:categoryId}],
                manufacturerId: manufacturerId,
                visibilities:[{productId:productId,productVersionId:"0fa91ce3e96a4bc2be4bd9ce752c3425",salesChannelId:"0245dbe7985a4fe7a5e36fcab8044ed9",visibility:30,id:"605b8bdb457f45a29f3818db258b494b"}]
            }
    })
    .catch(error => {
        console.log(error);
    })

}