Remove the skill from the Toloker using the ID of the "skill-Toloker" pair.
Connect the Toloka-Kit library to your script.
import toloka.client as toloka
Replace the sample API key with your own one.
toloka_client = toloka.TolokaClient('PlaceYourRealApiKey_Here', 'PRODUCTION');
Find out the ID of the "skill-Toloker" pair. This ID is unique for each Toloker having a skill assigned to them. Use the delete_user_skill()
method to remove the skill from the Toloker.
toloka_client.delete_user_skill(user_skill_id='54116339')
If everything goes as expected, the request will return an empty response.
import toloka.client as tolokatoloka_client = toloka.TolokaClient('PlaceYourRealApiKey_Here', 'PRODUCTION')toloka_client.delete_user_skill(user_skill_id='54116339')
Last updated: February 7, 2023