Create, Add, Remove Tag
Create, apply, and remove Veza tags
New in 2022.3.2: Tagging operations are now available as part of the
v1/
API set.
Methods
Create Veza Tag
Post {VezaURL}/api/v1/graph/tags
Define a new tag that can be applied to any discovered entity, as a key:value pair. The tag value
is optional.
Parameter | In | Description |
---|---|---|
| body | Contains a single key:value pair |
| body | Max length 255 characters (alphanumeric and |
| body | Max length 4096 characters (alphanumeric, |
A successful response will be empty ({}
).
Add Veza Tag
Post {VezaURL}/api/v1/graph/nodes/tags
Apply one or more tags to an entity by providing an entity ID. A new Tag will be created if one doesn't already exist.
Parameter | In | Description |
---|---|---|
| body | Veza entity ID |
| body | Array of tags to add |
To retrieve an entity ID, you can use the Query Builder API, or browse the Identity Data Entities catalog.
Remove Veza Tag
Post {VezaURL}/api/v1/graph/nodes/tags:remove
Remove a tag from an entity.
Parameter | In | Description |
---|---|---|
| body | ID of the entity to modify |
| body | Must contain a single tag to remove |
A successful response will be empty ({}
).
Last updated