Get demographic tags

Retrieves the list of ITEM_TAG resources associated with any demographic target (PERSON, AGENT, GROUP, ORGANISATION, or ROLE), optionally filtered by tag_key, tag_value, and/or tag_target_path. When no filter is provided, all tags in the demographic store are returned.

More than one ITEM_TAG may be associated with a single target — they are uniquely identified by (key, target_path).

Query Parameters
  • tag_key
    Type: string

    Filter by ITEM_TAG key (exact, case-insensitive match).

  • tag_value
    Type: string

    Filter by ITEM_TAG value.

  • tag_target_path
    Type: string

    Filter by ITEM_TAG target_path.

Responses
  • application/json
  • application/json
Request Example for get/demographic/tags
curl https://cataniamc.prod.cadasto.com/v1/demographic/tags
[
  {
    "key": "string",
    "value": "string",
    "target_path": "string",
    "target": {
      "id": {
        "_type": "OBJECT_VERSION_ID",
        "value": "fb458d9c-1323-42bc-b7f8-787f3660a0b5::cataniamc.prod.cadasto.com::1"
      },
      "namespace": "local",
      "type": "COMPOSITION"
    },
    "owner_id": "[Circular]"
  }
]