Treasure Data Policy Group Tags API

The Policy Group Tags API from Treasure Data — 2 operation(s) for policy group tags.

Operations 4

GET /policy_group_tags/{tag}/delegated_admins Get the delegated admins of a policy group #
PATCH /policy_group_tags/{tag}/delegated_admins Update the delegated admins of a policy group #
GET /policy_group_tags/{tag}/users Get the users of a policy group #
PATCH /policy_group_tags/{tag}/users Update the users of a policy group #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/treasure-data-policy-group-tags-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

treasure-data-policy-group-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Treasure Data Policy Group Tags API
  version: '3'
servers:
- url: https://api.treasuredata.com/v3
- url: https://api.treasuredata.co.jp/v3
- url: https://api.ap02.treasuredata.com/v3
- url: https://api.eu01.treasuredata.com/v3
security:
- ApiKeyAuth: []
tags:
- name: Policy Group Tags
paths:
  /policy_group_tags/{tag}/delegated_admins:
    parameters:
    - $ref: '#/components/parameters/path_tag'
    get:
      summary: Get the delegated admins of a policy group
      description: Returns a list of delegated admin user ids that manage a policy group.
      operationId: getPolicyGroupTagsDelegatedAdmins
      tags:
      - Policy Group Tags
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserIds'
    patch:
      summary: Update the delegated admins of a policy group
      description: Tags a list of delegated admin user ids to manage a policy group.
      operationId: updatePolicyGroupTagsDelegatedAdmins
      tags:
      - Policy Group Tags
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserIds'
      responses:
        '204':
          description: OK
  /policy_group_tags/{tag}/users:
    parameters:
    - $ref: '#/components/parameters/path_tag'
    get:
      summary: Get the users of a policy group
      description: Returns a list of user ids that are tagged with a policy group.
      operationId: getPolicyGroupTagsUsers
      tags:
      - Policy Group Tags
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserIds'
    patch:
      summary: Update the users of a policy group
      description: Tags a list of user ids with a policy group.
      operationId: updatePolicyGroupTagsUsers
      tags:
      - Policy Group Tags
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserIds'
      responses:
        '204':
          description: OK
components:
  parameters:
    path_tag:
      name: tag
      in: path
      required: true
      schema:
        $ref: '#/components/schemas/Tag'
  schemas:
    Tag:
      type: string
      example: APAC
    UserIds:
      type: object
      additionalProperties: false
      required:
      - user_ids
      properties:
        user_ids:
          type: array
          items:
            type: string
            example: '234'
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: TD1