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

image avatar

Charles Nadeau

Zendesk Documentation Team

Hi Ron, the auth parameter should read as follows:

auth=('myuser@workdomain.com/token', '{ZD provided token}')
 

0


hi Charles Nadeau , do you have some docs on python authentication? I tried your suggestion but didn't work
thanks!

0


Please sign in to leave a comment.

Didn't find what you're looking for?

New post