Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Tags

Tags are hash-prefixed keywords or phrases that appear in the title, description, or comments of a dataset. Tags can be used to index datasets by their contained tags with a search, which allows for topical dataset categorisation.


Objects

Tag

Path Type Format Description
id String Version 4 UUID The tag ID
name String   The tag name
usage Integer Unsigned Number of times the tag is used within the workspace
{
  "id" : "0e1098b3-2966-41cb-b1f1-9154fd7cc1ce",
  "name" : "fantastic",
  "usage" : 1,
  "_links" : {
    "self" : {
      "href" : "https://catalog.matatika.com/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/tags/0e1098b3-2966-41cb-b1f1-9154fd7cc1ce"
    },
    "search" : {
      "href" : "https://catalog.matatika.com/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/search?q=tag:fantastic"
    }
  }
}

Requests

See Also


View all tags in a workspace

GET

/api/workspaces/{workspace-id}/tags

Returns all tags in the workspace {workspace-id}.

Prerequisites

  • Workspace {workspace-id} must exist

Request

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/tags' -i -X GET \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/tags"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("GET", url, headers=headers)

print(response.text.encode('utf8'))

Response

200 OK

Tag collection with HAL links.

{
  "_embedded" : {
    "tags" : [ {
      "id" : "0e1098b3-2966-41cb-b1f1-9154fd7cc1ce",
      "name" : "fantastic",
      "usage" : 1,
      "_links" : {
        "self" : {
          "href" : "https://catalog.matatika.com/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/tags/0e1098b3-2966-41cb-b1f1-9154fd7cc1ce"
        },
        "search" : {
          "href" : "https://catalog.matatika.com/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/search?q=tag:fantastic"
        }
      }
    }, {
      "id" : "2dd18dd2-31b9-417c-b9ab-5a592361a920",
      "name" : "postgres",
      "usage" : 1,
      "_links" : {
        "self" : {
          "href" : "https://catalog.matatika.com/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/tags/2dd18dd2-31b9-417c-b9ab-5a592361a920"
        },
        "search" : {
          "href" : "https://catalog.matatika.com/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/search?q=tag:postgres"
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://catalog.matatika.com/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/tags"
    }
  }
}

View all tags in the news for a workspace

GET

/api/workspaces/{workspace-id}/news/tags

Returns all tags in the news for the workspace {workspace-id}.

Prerequisites

  • Workspace {workspace-id} must exist

Response

200 OK

Tag collection with HAL links.


View a tag in a workspace

GET

/api/workspaces/{workspace-id}/tags/{tag-id}

Returns the tag {tag-id} in the workspace {workspace-id}.

Prerequisites

  • Workspace {workspace-id} must exist
  • Tag {tag-id} must exist

Request

Example Snippets

cURL

curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://catalog.matatika.com:443/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/tags/0e1098b3-2966-41cb-b1f1-9154fd7cc1ce' -i -X GET \
    -H 'Accept: application/json, application/javascript, text/javascript, text/json' \
    -H 'Content-Type: application/json'

Python (requests)

import requests

url = "https://catalog.matatika.com:443/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/tags/0e1098b3-2966-41cb-b1f1-9154fd7cc1ce"

headers = {
  'Authorization': ACCESS_TOKEN
}

response = requests.request("GET", url, headers=headers)

print(response.text.encode('utf8'))

Response

200 OK

Tag with HAL links.

{
  "id" : "0e1098b3-2966-41cb-b1f1-9154fd7cc1ce",
  "name" : "fantastic",
  "usage" : 1,
  "_links" : {
    "self" : {
      "href" : "https://catalog.matatika.com/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/tags/0e1098b3-2966-41cb-b1f1-9154fd7cc1ce"
    },
    "search" : {
      "href" : "https://catalog.matatika.com/api/workspaces/ef1d01c9-912f-41ab-8edf-921db98adc81/search?q=tag:fantastic"
    }
  }
}