Skip to main content
POST
/
tags
Create Tag
curl --request POST \
  --url https://api.streamkap.com/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "type": [
    "environment"
  ],
  "description": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required
type
enum<string>[]
required
Available options:
environment,
general,
pipelines,
connectors,
transforms,
topics,
services,
sources,
users,
tenant,
destinations
description
string | null

Response

Successful Response

The response is of type Response Create Tag Tags Post · object.