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>"
}
'{}Create a new 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>"
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
The response is of type Response Create Tag Tags Post · object.
Was this page helpful?