Add Trademarks
curl --request POST \
--url https://api.signa.so/v1/portfolios/{id}/trademarks \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.signa.so/v1/portfolios/{id}/trademarks"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.signa.so/v1/portfolios/{id}/trademarks', 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.signa.so/v1/portfolios/{id}/trademarks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signa.so/v1/portfolios/{id}/trademarks"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.signa.so/v1/portfolios/{id}/trademarks")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signa.so/v1/portfolios/{id}/trademarks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyPortfolios
Add Trademarks
Add trademarks with optional external docketing references
POST
/
v1
/
portfolios
/
{id}
/
trademarks
Add Trademarks
curl --request POST \
--url https://api.signa.so/v1/portfolios/{id}/trademarks \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.signa.so/v1/portfolios/{id}/trademarks"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.signa.so/v1/portfolios/{id}/trademarks', 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.signa.so/v1/portfolios/{id}/trademarks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signa.so/v1/portfolios/{id}/trademarks"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.signa.so/v1/portfolios/{id}/trademarks")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signa.so/v1/portfolios/{id}/trademarks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body
See portfolio limits and references for current caps and
Use real
external_ref semantics.
Request
Requires anIdempotency-Key header and exactly one of these request shapes,
with 1–100 entries per request:
{ "trademark_ids": ["tm_01900000-0000-7000-8000-000000000001"] }
{
"items": [
{
"trademark_id": "tm_01900000-0000-7000-8000-000000000001",
"external_ref": "ACME-2024-001"
}
]
}
tm_ IDs returned by Signa. Plain trademark_ids silently deduplicates
repeated IDs and creates new memberships without a reference. The items shape
rejects repeated trademark IDs or references with 400 validation_error.
Response
Unknown trademark IDs are counted undernot_found; existing memberships are
counted under already_in_portfolio. The result also includes added.
External References
external_ref is your reference for this membership: optional, trimmed, 1–255
characters, case-sensitive, and unique within the portfolio. You can attach a
reference to an existing membership that has none. Once set, it is immutable:
remove the membership and re-add it to bind a different reference. Reusing a
reference for another mark, or changing an existing reference, returns
409 external_ref_conflict and rolls back the entire batch.
Errors
Exceeding the organization’s distinct managed-marks cap returns 409resource_quota_exceeded with quota_scope: "managed_marks"; the entire batch
is rolled back. Adding an already-managed mark to another folder does not consume
another managed-mark slot. Concurrent updates can return retryable
503 service_unavailable; retry the same request with the same idempotency key.