Responsys Filters API

Filters in the Responsys Interact Suite

Operations 1

GET /rest/api/v1.3/filters Retrieve All Filters #

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/responsys-filters-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

responsys-filters-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: REST API for Oracle Responsys Marketing Cloud Service Filters API
  version: 2023.03.03
  description: 'REST API for Oracle Responsys Marketing Cloud Service

    <br /><br /><b> Learn more about Responsys APIs in this video and download the <a href= "https://docs.oracle.com/en/cloud/saas/marketing/responsys-develop/Resources/Responsys_API.pdf">Responsys API Brochure</a>.</b><br />


    <iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?list=PLw7GyH-Hj8cOUEctIQIrl3wIdwsTYqFEx" frameborder="0" allowfullscreen="1"></iframe>'
  x-summary: REST API for Oracle Responsys Marketing Cloud Service Learn more about Responsys APIs in this video and download the Responsys API Brochure.
servers:
- url: https://login5.responsys.net/rest/api/v1.3
tags:
- name: Filters
  description: Filters in the Responsys Interact Suite
paths:
  /rest/api/v1.3/filters:
    get:
      summary: Retrieve All Filters
      description: Use this endpoint to retrieve all filters for an account. Both simple and classic filters are returned in the response.<br><br>For more information on filters, see the <a href='https://docs.oracle.com/en/cloud/saas/marketing/responsys-user/index.html#CSHID=FiltersAndSegmentGroupsLP'>Oracle Responsys Help Center</a>.
      operationId: get /rest/api/v1.3/filters
      responses:
        default:
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/filters-collection'
      parameters:
      - name: offset
        in: query
        description: Specifies an offset that allows you to retrieve the next batch of records. Starts at 0 and indicates the record number for the response result set. Any positive integer. For example, if your limit is 200, specifying an offset of 0 will return records 0 through 200. To retrieve the next 200, set an offset of 200. If not specified, the default is 0.
        schema:
          type: integer
      - name: limit
        in: query
        description: Number of filters to return in the response (defaults to 200 and cannot exceed 200)
        schema:
          type: integer
      x-relation:
      - instances
      tags:
      - Filters
      x-internal-id: rest-api-v1.3-filters-get
      x-filename-id: rest-api-v1.3-filters-get
components:
  schemas:
    retrieve-filters-response:
      type: object
      title: filter
      properties:
        id:
          description: ID of the filter.
          type: integer
        name:
          description: Name of the filter.
          type: string
        folderName:
          description: Folder name for the filter.
          type: string
        folderId:
          description: ID of the folder containing the filter.
          type: integer
        listName:
          description: Name of the list to which the filter is associated.
          type: string
        listId:
          description: ID of the list to which the filter is associated.
          type: integer
        createdDate:
          description: Creation date of the filter
          type: string
        modifiedDate:
          description: Last Modified date of the filter
          type: string
        description:
          description: Description of the filter
          type: string
        filterType:
          description: Type of the filter
          type: string
        filterSubType:
          description: Sub-Type of the filter
          type: string
        filterSource:
          description: Filter source
          enum:
          - Profile
          - AppChannel
          - Enactment
          type: string
    filters-collection:
      title: filters
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/retrieve-filters-response'