Login
HomeDocsAPI ReferenceChat SDKsRelease Notes
HomeDocsAPI ReferenceChat SDKsRelease Notes
  • Introduction
    • Overview
    • Authentication
    • Versioning
    • Limits
    • Pagination
    • Errors
    • Webhooks
    • Migrate to V2
    • Changelog
  • Knowledge
    • Overview
    • Sources
    • Articles
    • Tags
  • End Users
    • Overview
    • Getting started
  • Integrations
    • Overview
    • Getting started
  • Conversations
    • Overview
    • Getting started
  • Data Compliance
    • Overview
  • Data Export
    • Overview
    • Getting started
    • Conversations
    • Messages
Login
LogoLogo
KnowledgeTags

GET
https://example.ada.support/api/v2/knowledge/tags/
GET
/api/v2/knowledge/tags/
1import requests
2
3url = "https://example.ada.support/api/v2/knowledge/tags/"
4
5headers = {"Authorization": "Bearer <token>"}
6
7response = requests.get(url, headers=headers)
8
9print(response.json())
Try it
1{
2 "data": [
3 {
4 "id": "5df263b7db5a7e6ea03fae9b",
5 "name": "password_reset"
6 }
7 ]
8}
Was this page helpful?
Previous

Delete a single article tag

Next
Built with
Get article tags
Get article tags

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Response

Article tags
datalist of objects or null

Errors