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" : "f48220dc-331e-427c-8e4e-42096289eec3",
"name" : "fantastic",
"usage" : 1,
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/workspaces/a06086eb-cbf2-4282-9352-a454e1658570/tags/f48220dc-331e-427c-8e4e-42096289eec3"
},
"search" : {
"href" : "https://app.meltano.com/api/workspaces/a06086eb-cbf2-4282-9352-a454e1658570/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.meltano.com:443/api/workspaces/a06086eb-cbf2-4282-9352-a454e1658570/tags' -i -X GET

Response

200 OK

Tag collection with HAL links.

{
"_embedded" : {
"tags" : [ {
"id" : "9baf5915-7273-48d9-9429-c990e6c64e28",
"name" : "postgres",
"usage" : 1,
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/workspaces/a06086eb-cbf2-4282-9352-a454e1658570/tags/9baf5915-7273-48d9-9429-c990e6c64e28"
},
"search" : {
"href" : "https://app.meltano.com/api/workspaces/a06086eb-cbf2-4282-9352-a454e1658570/search?q=tag%3Apostgres"
}
}
}, {
"id" : "f48220dc-331e-427c-8e4e-42096289eec3",
"name" : "fantastic",
"usage" : 1,
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/workspaces/a06086eb-cbf2-4282-9352-a454e1658570/tags/f48220dc-331e-427c-8e4e-42096289eec3"
},
"search" : {
"href" : "https://app.meltano.com/api/workspaces/a06086eb-cbf2-4282-9352-a454e1658570/search?q=tag%3Afantastic"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/workspaces/a06086eb-cbf2-4282-9352-a454e1658570/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.meltano.com:443/api/workspaces/a06086eb-cbf2-4282-9352-a454e1658570/tags/f48220dc-331e-427c-8e4e-42096289eec3' -i -X GET

Response

200 OK

Tag with HAL links.

{
"id" : "f48220dc-331e-427c-8e4e-42096289eec3",
"name" : "fantastic",
"usage" : 1,
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/workspaces/a06086eb-cbf2-4282-9352-a454e1658570/tags/f48220dc-331e-427c-8e4e-42096289eec3"
},
"search" : {
"href" : "https://app.meltano.com/api/workspaces/a06086eb-cbf2-4282-9352-a454e1658570/search?q=tag%3Afantastic"
}
}
}

See Also