TagsRetrieve

Retrieve a tag

Look up the full details of a single tag by its id, scoped to the authenticated organization.

Retrieves the details of an existing tag, specified by its id. The tag must belong to the authenticated organization — passing a UUID that exists in another org returns 404 not found.

Endpoint

POST https://api.productbridge.io/api/external/v1/tags/retrieve

Arguments

body
api_keystring
Required

Your organization's public API key. See Authentication.

body
idstring
Required

The tag's UUID.

Returns

A tag object on success, or a 404 error envelope when the id doesn't exist for this organization.

Example request

curl -X POST https://api.productbridge.io/api/external/v1/tags/retrieve \
  -H 'Content-Type: application/json' \
  -d '{
    "api_key": "pb_YOUR_PUBLIC_API_KEY",
    "id": "773c3ef8-b8cd-cd15-01ba-tag00000001"
  }'

Example response

{
  "id": "773c3ef8-b8cd-cd15-01ba-tag00000001",
  "name": "mobile",
  "code": "mobile",
  "color": "#10B981",
  "show_on_feedback": true,
  "show_on_roadmap": true,
  "created_at": "2026-04-12T08:30:11.000Z"
}

Errors

StatusBodyCause
401{"detail":{"error":"invalid api_key"}}Missing / unknown / inactive api_key.
404{"detail":{"error":"tag not found"}}Wrong id, deleted, or different organization.
422Validation error envelopeMissing id, or id is not a UUID.

See Errors for the full envelope shape.

Was this page helpful?

Last updated 2 weeks ago

Built with Documentation.AI