Tags
Searches tags using the provided filters and returns matching tag results with total count header.
Body
min_idinteger · nullableOptional
Return tags with ID greater than or equal to this value
sincestring · nullableOptional
Return tags updated at or after this timestamp (ISO 8601)
sizeinteger · min: 1 · nullableOptional
Maximum number of results to return
Responses
200
Tag search response
application/json
401
Unauthorized
application/json
500
Internal Server Error
application/json
post/api/data_structures/tags/search
POST /api/data_structures/tags/search HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 53
{
"min_id": 1,
"since": "2026-05-01T00:00:00Z",
"size": 20
}{
"data": [
{
"description": "Customer tag",
"domain_ids": [
10
],
"id": 1,
"inserted_at": "2026-05-07T10:00:00Z",
"name": "customer",
"updated_at": "2026-05-07T10:00:00Z"
}
]
}Last updated