Skip to main content
POST
/
tags
/
search
Search tags (POST)
curl --request POST \
  --url https://api.streamkap.com/tags/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tag_ids": [
    "<string>"
  ]
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

tag_ids
string[] | null
tag_name
string | null
tag_type
enum<string> | null
Available options:
environment,
general,
pipelines,
connectors,
transforms,
topics,
services,
sources,
users,
tenant,
destinations

Body

application/json

Body model for POST /tags/search requests.

Supports large lists of tag IDs that would exceed URL length limits when using GET. Body parameters take precedence over query parameters when both are provided.

tag_ids
string[] | null

List of tag IDs. Body takes precedence over query params.

Response

Successful Response

The response is of type Response Get Tags For Specific Tenant Tags Search Post · object.