Get List of Tags
Personal Tags - cURL
curl --location --request POST 'https://datasaur.ai/graphql' \
--header 'Authorization: Bearer access_token' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "query { getPersonalTags { id name } }"
}'Response
{
"data": {
"getPersonalTags": [
{
"id": "1",
"name": "Example"
}
]
},
"extensions": {}
}Team Tags - cURL
Response
Last updated