Create multiple tags
curl --request POST \
--url https://api.mentionlab.io/api/tags/many \
--header 'Content-Type: application/json' \
--header 'x-project-id: <x-project-id>' \
--data '
{
"tags": [
{
"name": "Marketing",
"color": "#3B82F6"
},
{
"name": "Product Launch",
"color": "#10B981"
}
]
}
'import requests
url = "https://api.mentionlab.io/api/tags/many"
payload = { "tags": [
{
"name": "Marketing",
"color": "#3B82F6"
},
{
"name": "Product Launch",
"color": "#10B981"
}
] }
headers = {
"x-project-id": "<x-project-id>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-project-id': '<x-project-id>', 'Content-Type': 'application/json'},
body: JSON.stringify({
tags: [
{name: 'Marketing', color: '#3B82F6'},
{name: 'Product Launch', color: '#10B981'}
]
})
};
fetch('https://api.mentionlab.io/api/tags/many', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mentionlab.io/api/tags/many",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'tags' => [
[
'name' => 'Marketing',
'color' => '#3B82F6'
],
[
'name' => 'Product Launch',
'color' => '#10B981'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-project-id: <x-project-id>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mentionlab.io/api/tags/many"
payload := strings.NewReader("{\n \"tags\": [\n {\n \"name\": \"Marketing\",\n \"color\": \"#3B82F6\"\n },\n {\n \"name\": \"Product Launch\",\n \"color\": \"#10B981\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-project-id", "<x-project-id>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mentionlab.io/api/tags/many")
.header("x-project-id", "<x-project-id>")
.header("Content-Type", "application/json")
.body("{\n \"tags\": [\n {\n \"name\": \"Marketing\",\n \"color\": \"#3B82F6\"\n },\n {\n \"name\": \"Product Launch\",\n \"color\": \"#10B981\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mentionlab.io/api/tags/many")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-project-id"] = '<x-project-id>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"tags\": [\n {\n \"name\": \"Marketing\",\n \"color\": \"#3B82F6\"\n },\n {\n \"name\": \"Product Launch\",\n \"color\": \"#10B981\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body[
{
"id": 1,
"project": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6",
"name": "feature",
"color": "#3B82F6",
"queryCount": 5,
"groupId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"groupName": "<string>"
}
]{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}Tags
Create multiple tags
Creates several tags at once and returns the newly created tags.
POST
/
api
/
tags
/
many
Create multiple tags
curl --request POST \
--url https://api.mentionlab.io/api/tags/many \
--header 'Content-Type: application/json' \
--header 'x-project-id: <x-project-id>' \
--data '
{
"tags": [
{
"name": "Marketing",
"color": "#3B82F6"
},
{
"name": "Product Launch",
"color": "#10B981"
}
]
}
'import requests
url = "https://api.mentionlab.io/api/tags/many"
payload = { "tags": [
{
"name": "Marketing",
"color": "#3B82F6"
},
{
"name": "Product Launch",
"color": "#10B981"
}
] }
headers = {
"x-project-id": "<x-project-id>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-project-id': '<x-project-id>', 'Content-Type': 'application/json'},
body: JSON.stringify({
tags: [
{name: 'Marketing', color: '#3B82F6'},
{name: 'Product Launch', color: '#10B981'}
]
})
};
fetch('https://api.mentionlab.io/api/tags/many', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mentionlab.io/api/tags/many",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'tags' => [
[
'name' => 'Marketing',
'color' => '#3B82F6'
],
[
'name' => 'Product Launch',
'color' => '#10B981'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-project-id: <x-project-id>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mentionlab.io/api/tags/many"
payload := strings.NewReader("{\n \"tags\": [\n {\n \"name\": \"Marketing\",\n \"color\": \"#3B82F6\"\n },\n {\n \"name\": \"Product Launch\",\n \"color\": \"#10B981\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-project-id", "<x-project-id>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mentionlab.io/api/tags/many")
.header("x-project-id", "<x-project-id>")
.header("Content-Type", "application/json")
.body("{\n \"tags\": [\n {\n \"name\": \"Marketing\",\n \"color\": \"#3B82F6\"\n },\n {\n \"name\": \"Product Launch\",\n \"color\": \"#10B981\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mentionlab.io/api/tags/many")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-project-id"] = '<x-project-id>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"tags\": [\n {\n \"name\": \"Marketing\",\n \"color\": \"#3B82F6\"\n },\n {\n \"name\": \"Product Launch\",\n \"color\": \"#10B981\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body[
{
"id": 1,
"project": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6",
"name": "feature",
"color": "#3B82F6",
"queryCount": 5,
"groupId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"groupName": "<string>"
}
]{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}Headers
Project ID to specify the project context
Body
application/json
List of tags to create in a single batch operation. Must contain at least one tag, and each entry is validated against the CreateTagDto schema.
Show child attributes
Show child attributes
Example:
[
{ "name": "Marketing", "color": "#3B82F6" },
{
"name": "Product Launch",
"color": "#10B981"
}
]
Response
Unique identifier for the tag
Example:
1
The project this tag belongs to
Example:
"a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6"
Name of the tag
Example:
"feature"
Color of the tag in hex format
Example:
"#3B82F6"
Number of queries associated with this tag
Example:
5
ID of the tag group node this tag is filed under; null when ungrouped.
Name of the tag group node this tag is filed under; null when ungrouped.