Epsilon Filter Mapping API

The filterMapping API from Epsilon — 2 operation(s) for filtermapping.

Operations 5

POST /filter-mapping create filter mapping #
GET /filter-mapping get list of filter mappings #
PATCH /filter-mapping/{id} update a filter mapping #
GET /filter-mapping/{id} get a filter mapping #
DELETE /filter-mapping/{id} delete a filter mapping #

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/epsilon-filtermapping-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

epsilon-filtermapping-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Citrus filter-mapping Filter Mapping API
  version: 0.0.1-alpha
  x-source: https://developers.citrusad.com/integration/reference/
servers:
- url: https://$BASE_URL.citrusad.com/v1
security:
- TokenSecurity: []
tags:
- name: filterMapping
paths:
  /filter-mapping:
    post:
      summary: create filter mapping
      responses:
        '200':
          description: created FilterMapping object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FilterMapping'
        '400':
          $ref: '#/components/responses/InvalidRequest'
        '401':
          $ref: '#/components/responses/UnAuthorized'
        '403':
          $ref: '#/components/responses/UnAuthorized'
        '500':
          $ref: '#/components/responses/ErrorResponse'
      operationId: createFilterMapping
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateFilterMappingRequest'
        required: true
      tags:
      - filterMapping
    get:
      summary: get list of filter mappings
      responses:
        '200':
          description: A list of filterMapping objects for catalog
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListFilterMappingsResponse'
        '400':
          $ref: '#/components/responses/InvalidRequest'
        '401':
          $ref: '#/components/responses/UnAuthorized'
        '403':
          $ref: '#/components/responses/UnAuthorized'
        '500':
          $ref: '#/components/responses/ErrorResponse'
      operationId: listFilterMappings
      parameters:
      - name: catalogId
        in: query
        required: true
        schema:
          type: string
      - name: filters
        in: query
        required: false
        schema:
          type: string
      - name: pageSize
        in: query
        required: true
        schema:
          type: integer
      - name: pageToken
        in: query
        required: false
        schema:
          type: string
      tags:
      - filterMapping
  /filter-mapping/{id}:
    patch:
      summary: update a filter mapping
      responses:
        '200':
          description: updated FilterMapping object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FilterMapping'
        '400':
          $ref: '#/components/responses/InvalidRequest'
        '401':
          $ref: '#/components/responses/UnAuthorized'
        '403':
          $ref: '#/components/responses/UnAuthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ErrorResponse'
      operationId: updateFilterMapping
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateFilterMappingRequest'
        required: true
      tags:
      - filterMapping
    get:
      summary: get a filter mapping
      responses:
        '200':
          description: A filterMapping object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FilterMapping'
        '400':
          $ref: '#/components/responses/InvalidRequest'
        '401':
          $ref: '#/components/responses/UnAuthorized'
        '403':
          $ref: '#/components/responses/UnAuthorized'
        '500':
          $ref: '#/components/responses/ErrorResponse'
      operationId: getFilterMapping
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      tags:
      - filterMapping
    delete:
      summary: delete a filter mapping
      responses:
        '200':
          description: standard success response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response'
        '400':
          $ref: '#/components/responses/InvalidRequest'
        '401':
          $ref: '#/components/responses/UnAuthorized'
        '403':
          $ref: '#/components/responses/UnAuthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ErrorResponse'
      operationId: deleteFilterMapping
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      tags:
      - filterMapping
components:
  responses:
    UnAuthorized:
      description: Login failed or token not valid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Response'
    NotFound:
      description: Resource Not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Response'
    ErrorResponse:
      description: There was a server problem.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Response'
    InvalidRequest:
      description: There was a problem with input.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Response'
  schemas:
    UpdateFilterMappingRequest:
      type: object
      properties:
        filter:
          type: string
        catalogId:
          type: string
        displayName:
          type: string
      required:
      - catalogId
      - filter
      - displayName
    ListFilterMappingsResponse:
      type: object
      properties:
        nextPageToken:
          type: string
        filterMappings:
          type: array
          items:
            $ref: '#/components/schemas/FilterMapping'
    CreateFilterMappingRequest:
      type: object
      properties:
        filter:
          type: string
        catalogId:
          type: string
        displayName:
          type: string
      required:
      - catalogId
      - filter
      - displayName
    FilterMapping:
      type: object
      properties:
        filter:
          type: string
        catalogId:
          type: string
        displayName:
          type: string
        id:
          type: string
      required:
      - id
      - catalogId
      - filter
      - displayName
    Response:
      type: object
      properties:
        errorMessages:
          type: array
          items:
            type: object
            properties:
              code:
                type: integer
              message:
                type: string
        isSuccessful:
          type: boolean
  securitySchemes:
    TokenSecurity:
      in: header
      name: Authorization
      description: 'For accessing the API a valid JWT jwt must be passed in all queries in

        the ''Authorization'' header. The following syntax must be used in the

        ''Authorization'' header.


        Bearer xxx.yyy.zzz

        '
      type: apiKey