Recent searches
No recent searches
Python call to Audits API - "Couldn't authenticate you"
Posted Jun 07, 2024
Why can't I get the Authentication to work
url = "https://sandboxdomain.zendesk.com/api/v2/tickets/"
url1 = "/audits.json"
response = requests.request(
"GET",
url+ticket[0]+url1,
auth=('myuser@workdomain.com/token:{ZD provided token}',""),
headers=headers
)
1
2
2 comments
Charles Nadeau
Hi Ron, the auth parameter should read as follows:
auth=('
myuser@workdomain.com
/token', '{ZD provided token}')
0
Alberto Avila-Garcia
hi Charles Nadeau , do you have some docs on python authentication? I tried your suggestion but didn't work
thanks!
0