2022-09-01
1import requests23url = "https://withpersona.com/api/v1/accounts/account-id/remove-tag"45payload = {}6headers = {7 "Authorization": "<apiKey>",8 "Content-Type": "application/json"9}1011response = requests.post(url, json=payload, headers=headers)1213print(response.json())
1{}