Skip to main content
GET
/
v2
/
tags
/
for-subject
List Subject Tags
curl --request GET \
  --url https://public.api.serval.com/v2/tags/for-subject \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "color": "<string>",
      "iconSlug": "<string>",
      "teamId": "<string>",
      "description": "<string>"
    }
  ],
  "nextPageToken": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

subjectType
enum<string>
required

TagSubjectType is the kind of entity a tag is attached to. Mirrors the DB tag_subject_type enum and keys the polymorphic tag-subject RPCs that replace the per-subject tag-attach RPCs.

Deliberately distinct from AccessRelationshipSubjectType: the two overlap but diverge (tags add workflow/guidance; owners add team) and back separate DB enums. Unifying them would trade enum type-safety for runtime subset validation.

Available options:
TAG_SUBJECT_TYPE_UNSPECIFIED,
TAG_SUBJECT_TYPE_WORKFLOW,
TAG_SUBJECT_TYPE_GUIDANCE,
TAG_SUBJECT_TYPE_APP_INSTANCE,
TAG_SUBJECT_TYPE_RESOURCE,
TAG_SUBJECT_TYPE_ENTITLEMENT
subjectId
string
required
pageSize
integer<int32>

Maximum number of results to return. Default is 10000, maximum is 10000.

pageToken
string

Token for pagination. Leave empty for the first request.

Response

Success

data
Tag · object[]
nextPageToken
string | null

Token for retrieving the next page of results. Empty if no more results.