I am trying to get Zendesk topics using the following api documentation but it's not working.
https://developer.zendesk.com/api-reference/help_center/help-center-api/topics/
from requests import Session
session.auth = 'test@gmail.com', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
topics_url = https://test.zendesk.com/api/v2/community/topics.json?include=users
topics_response = session.get(topics_url, auth=(email + '/token', api_token))
print(topics_response)
print(topics_response.text)
I am getting following error:
<Response [404]>
Not Found
I want to confirm that topic UI and api still exist or not. If exist how can i fix this issue?