Skip to main content

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

PathJSON TypeFormatDescription
idstringVersion 4 UUIDThe tag ID
namestringThe tag name
usagenumberUnsigned integerNumber of times the tag is used within the workspace
{
"id" : "e6fee408-1e0f-4ccd-a11f-f79f3d84f0b2",
"name" : "fantastic",
"usage" : 1,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/2d323357-7e04-4793-99ba-cac231cfd6fa/tags/e6fee408-1e0f-4ccd-a11f-f79f3d84f0b2"
},
"search" : {
"href" : "https://app.matatika.com/api/workspaces/2d323357-7e04-4793-99ba-cac231cfd6fa/search?q=tag%3Afantastic"
}
}
}

Requests

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
Examples
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/workspaces/2d323357-7e04-4793-99ba-cac231cfd6fa/tags' -i -X GET

Response

200 OK

Tag collection with HAL links.

{
"_embedded" : {
"tags" : [ {
"id" : "451c83bc-5f93-4a4f-930c-1036e9af126f",
"name" : "postgres",
"usage" : 1,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/2d323357-7e04-4793-99ba-cac231cfd6fa/tags/451c83bc-5f93-4a4f-930c-1036e9af126f"
},
"search" : {
"href" : "https://app.matatika.com/api/workspaces/2d323357-7e04-4793-99ba-cac231cfd6fa/search?q=tag%3Apostgres"
}
}
}, {
"id" : "e6fee408-1e0f-4ccd-a11f-f79f3d84f0b2",
"name" : "fantastic",
"usage" : 1,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/2d323357-7e04-4793-99ba-cac231cfd6fa/tags/e6fee408-1e0f-4ccd-a11f-f79f3d84f0b2"
},
"search" : {
"href" : "https://app.matatika.com/api/workspaces/2d323357-7e04-4793-99ba-cac231cfd6fa/search?q=tag%3Afantastic"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/2d323357-7e04-4793-99ba-cac231cfd6fa/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
Examples
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/workspaces/2d323357-7e04-4793-99ba-cac231cfd6fa/tags/e6fee408-1e0f-4ccd-a11f-f79f3d84f0b2' -i -X GET

Response

200 OK

Tag with HAL links.

{
"id" : "e6fee408-1e0f-4ccd-a11f-f79f3d84f0b2",
"name" : "fantastic",
"usage" : 1,
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/2d323357-7e04-4793-99ba-cac231cfd6fa/tags/e6fee408-1e0f-4ccd-a11f-f79f3d84f0b2"
},
"search" : {
"href" : "https://app.matatika.com/api/workspaces/2d323357-7e04-4793-99ba-cac231cfd6fa/search?q=tag%3Afantastic"
}
}
}

See Also