Changelog
2026-05-27
Added
Add color field to UpdateTagRequest
Products: Tags
Scope: API + SDKs
-
What's new
UpdateTagRequestnow exposes the optionalcolorfield (hex string, e.g.#FF5733), matching what the upstream tagging-service already accepts. Previously the field was missing from the OpenAPI spec. -
Impact
Clients can update a tag's color viaPATCH /v1/tags/{tagId}. No change to server behavior — the field was already honored upstream.
Affected endpoints:
Expose type field on tags and add type filter to list tags
Products: Tags
Scope: API + SDKs
-
What's new
TheTagresponse now includes an optionaltypefield (currentlyWALLET_POOL) indicating the domain that owns the tag.CreateTagRequestaccepts an optionaltypeto create typed tags, andGET /v1/tagsaccepts an optionaltypequery parameter (array ofTagType, multi-select) to filter the paged list by one or more tag types. Thetypefield is intentionally omitted fromUpdateTagRequestbecause tag type is immutable after creation. -
Impact
Clients can read the newtypefield on tag responses (includingTagembedded in vault-account responses), create typed tags viaPOST /v1/tags, and filter the list endpoint by tag type. Existing tags with no type continue to return without the field.