Tags
Last updated
GET /api/tags HTTP/1.1
Accept: */*
{
"data": [
{
"id": 1,
"value": {
"target_type": "data_field",
"type": "business_concept"
}
}
]
}POST /api/tags HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 72
{
"tag": {
"value": {
"target_type": "data_field",
"type": "business_concept"
}
}
}{
"data": {
"id": 1,
"value": {
"target_type": "data_field",
"type": "business_concept"
}
}
}POST /api/tags/search HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 34
{
"value": {
"target_type": "ingest"
}
}{
"data": [
{
"id": 1,
"value": {
"target_type": "data_field",
"type": "business_concept"
}
}
]
}GET /api/tags/{id} HTTP/1.1
Accept: */*
{
"data": {
"id": 1,
"value": {
"target_type": "data_field",
"type": "business_concept"
}
}
}PUT /api/tags/{id} HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 72
{
"tag": {
"value": {
"target_type": "data_field",
"type": "business_concept"
}
}
}{
"data": {
"id": 1,
"value": {
"target_type": "data_field",
"type": "business_concept"
}
}
}DELETE /api/tags/{id} HTTP/1.1
Accept: */*
PATCH /api/tags/{id} HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 72
{
"tag": {
"value": {
"target_type": "data_field",
"type": "business_concept"
}
}
}{
"data": {
"id": 1,
"value": {
"target_type": "data_field",
"type": "business_concept"
}
}
}