Vince Live’s user interface does not yet support managing tags.

For now it is possible to use APIs to manage tags on all entities.

Tag keys can be any string value, tag values can be any data type.

Get an Id Token

Either set up an API Client or Open Devtools (F12) in your browser

Untitled

Copy the Id Token into Postman as Bearer token.

Listing tag keys for an entity

To list existing keys on an entity, use GET [<https://api.vince.live/v2/tags/user/keys>](<https://api.vince.live/v2/tags/useru>) to get the current keys used

Example response:

{
    "entity": "USER",
    "type": "keys",
    "data": [
        "m3UserId",
        "warehouse",
        "hokage",
        "pricelists",
        "price"
    ]
}

Getting tags for an entity

Using a User as an example, use GET <https://api.vince.live/v2/tags/user/{userId}>

Example response:

{
    "entity": "user",
    "type": "object",
    "id": "USER-d5debee2a7ab47f498f728279c93c33a",
    "data": {
        "m3UserId": "SOMEUSERID"
    }
}