API How to add a target to members

Hi,
From the API, is it possible to add administrators to a call queue?
I saw that members must first be added to a role.

POST
{{baseUrl}}/phone/roles/:roleId/members  
{
    "copy_targets": false,
    "copy_all_members": false,
    "user_ids": [
        "pascal.dupont@soc.fr",
        "sylvie.durand@soc.fr"
    ]
}

This step works correctly, and I can see my members in the group.

Now, I don’t know how to associate these members with my call queue, as it can be done from the web application: Zoom Support Article — “How to add a target to members.”
I would like to achieve this using the API.

Thank you for your help.