Incentivio Customer Tag And Rule Controller API

The customer-tag-and-rule-controller API from Incentivio — 4 operation(s) for customer-tag-and-rule-controller.

Operations 7

GET /incentivio-user-domain/customer-tags/{id} #
PUT /incentivio-user-domain/customer-tags/{id} #
DELETE /incentivio-user-domain/customer-tags/{id} #
GET /incentivio-user-domain/customer-tags #
POST /incentivio-user-domain/customer-tags #
GET /incentivio-user-domain/tags-and-rules #
GET /incentivio-user-domain/customer-tags-types #

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/incentivio-customer-tag-and-rule-controller-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

incentivio-customer-tag-and-rule-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenAPI definition Customer Tag And Rule Controller API
  version: v0
servers:
- url: https://adminapi.incentivio.com/incentivio-admin-api
  description: Generated server url
tags:
- name: customer-tag-and-rule-controller
paths:
  /incentivio-user-domain/customer-tags/{id}:
    get:
      tags:
      - customer-tag-and-rule-controller
      operationId: findCustomerTagById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/TagAndRuleDTO'
    put:
      tags:
      - customer-tag-and-rule-controller
      operationId: updateCustomerTag
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomerTagRequestDTO'
        required: true
      responses:
        '200':
          description: OK
    delete:
      tags:
      - customer-tag-and-rule-controller
      operationId: deleteCustomerTag
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
  /incentivio-user-domain/customer-tags:
    get:
      tags:
      - customer-tag-and-rule-controller
      operationId: findPaginatedTagsAndRulesByClientId
      parameters:
      - name: page
        in: query
        required: false
        schema:
          type: integer
          format: int32
          default: 0
      - name: count
        in: query
        required: false
        schema:
          type: integer
          format: int32
          default: 300
      - name: title
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CustomerTagAndRulesWithPagingForAdminDTO'
    post:
      tags:
      - customer-tag-and-rule-controller
      operationId: createCustomerTag
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomerTagRequestDTO'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/TagAndRuleDTO'
  /incentivio-user-domain/tags-and-rules:
    get:
      tags:
      - customer-tag-and-rule-controller
      operationId: findTagsAndRulesByClientId
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/TagsAndRulesResponseDTO'
  /incentivio-user-domain/customer-tags-types:
    get:
      tags:
      - customer-tag-and-rule-controller
      operationId: findCustomerTagTypesByClientId
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CustomerTagDataType'
components:
  schemas:
    TagAndRuleDTO:
      type: object
      properties:
        id:
          type: string
        clientId:
          type: string
        key:
          type: string
        tagType:
          $ref: '#/components/schemas/TagType'
        category:
          type: string
        categoryDisplayTitle:
          type: string
        categoryDisplayRank:
          type: integer
          format: int32
        title:
          type: string
        description:
          type: string
        attributeType:
          $ref: '#/components/schemas/CustomerTagDataType'
        collectionValues:
          type: array
          items:
            type: string
        source:
          $ref: '#/components/schemas/Source'
        sourceDisplayTitle:
          type: string
        tagRank:
          type: integer
          format: int32
        visibility:
          type: array
          items:
            type: string
    CustomerTagDataType:
      type: string
      enum:
      - NUMBER
      - TEXT
      - DATE
      - COLLECTION
      - GEO
    CustomerTagRequestDTO:
      type: object
      properties:
        title:
          type: string
          minLength: 1
        key:
          type: string
          minLength: 1
        description:
          type: string
        attributeType:
          type: string
          minLength: 1
        collectionValues:
          type: array
          items:
            type: string
        source:
          type: string
      required:
      - attributeType
      - key
      - title
    Source:
      type: string
      enum:
      - SYSTEM
      - GUEST_INPUT
      - GENERATED
      - IMPORTED_MANUAL
    PagingDTO:
      type: object
      properties:
        total:
          type: integer
          format: int32
        count:
          type: integer
          format: int32
        totalPages:
          type: integer
          format: int32
        currentPage:
          type: integer
          format: int32
    CustomerTagAndRulesWithPagingForAdminDTO:
      type: object
      properties:
        tagAndRuleDTOS:
          type: array
          items:
            $ref: '#/components/schemas/TagAndRuleDTO'
        paging:
          $ref: '#/components/schemas/PagingDTO'
    TagsAndRulesResponseDTO:
      type: object
      properties:
        tagAndRuleDTOS:
          type: array
          items:
            $ref: '#/components/schemas/TagAndRuleDTO'
    TagType:
      type: string
      enum:
      - CUSTOM
      - SYSTEM