Moody's RMS Cluster API

The Cluster API from Moody's RMS — 5 operation(s) for cluster.

Operations 8

GET /v1/Cluster Get Data Bridge ACL #
GET /v1/Cluster/allowed-ips Get IP addresses #
PUT /v1/Cluster/allowed-ips Update Data Bridge ACL #
PATCH /v1/Cluster/allowed-ips Overwrite Data Bridge ACL #
DELETE /v1/Cluster/allowed-ips/{ipAddress} Delete IP address #
DELETE /v1/Cluster/allowed-ips/{cidrIpAddress}/{cidrIpPrefix} Delete range of IP addresses #
PUT /v1/Cluster/server-security Set TLS protocol version #
GET /v1/Cluster/server-security Get cluster security #

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/moodys-rms-cluster-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

moodys-rms-cluster-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Data Bridge Cluster API
  description: Endpoints for Data Bridge.
  version: 2022-09
servers:
- url: https://{host}/databridge
  description: Intelligent Risk Platform
  variables:
    host:
      enum:
      - api-euw1.rms.com
      - api-use1.rms.com
      default: api-euw1.rms.com
      description: 'Data center that hosts the tenant instance: api-euw1.rms.com or api-use1.rms.com.'
security:
- RMS_Auth: []
tags:
- name: Cluster
paths:
  /v1/Cluster:
    get:
      tags:
      - Cluster
      summary: Get Data Bridge ACL
      operationId: getAcl
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.Cluster'
            application/json:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.Cluster'
            text/json:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.Cluster'
  /v1/Cluster/allowed-ips:
    get:
      tags:
      - Cluster
      summary: Get IP addresses
      operationId: getipaddresses
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.CidrEntry'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.CidrEntry'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.CidrEntry'
    put:
      tags:
      - Cluster
      summary: Update Data Bridge ACL
      operationId: updateacl
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.AddCidrRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.AddCidrRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.AddCidrRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.AddCidrRequest'
      responses:
        '200':
          description: Success
    patch:
      tags:
      - Cluster
      summary: Overwrite Data Bridge ACL
      operationId: overwriteacl
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.UpdateCidrRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.UpdateCidrRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.UpdateCidrRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.UpdateCidrRequest'
      responses:
        '200':
          description: Success
  /v1/Cluster/allowed-ips/{ipAddress}:
    delete:
      tags:
      - Cluster
      summary: Delete IP address
      operationId: deleteipaddress
      parameters:
      - name: ipAddress
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
  /v1/Cluster/allowed-ips/{cidrIpAddress}/{cidrIpPrefix}:
    delete:
      tags:
      - Cluster
      summary: Delete range of IP addresses
      operationId: deleteipaddresses
      parameters:
      - name: cidrIpAddress
        description: Range of IP addresses in binary notation.
        in: path
        required: true
        schema:
          type: string
      - name: cidrIpPrefix
        description: CIDR prefix that specifies the number of bits in the network ID. By default, `32`.
        in: path
        required: true
        schema:
          type: string
          default: '32'
      responses:
        '200':
          description: Success
  /v1/Cluster/server-security:
    put:
      tags:
      - Cluster
      summary: Set TLS protocol version
      operationId: settlsprotocolversion
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.SetClusterSecurityRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.SetClusterSecurityRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.SetClusterSecurityRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.SetClusterSecurityRequest'
      responses:
        '200':
          description: Success
    get:
      tags:
      - Cluster
      summary: Get cluster security
      operationId: identifyencryptedconnection
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.GetClusterSecurityResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.GetClusterSecurityResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.GetClusterSecurityResponse'
components:
  schemas:
    RMS.EnterpriseIntegrationHub.Contracts.CidrEntry:
      required:
      - cidrBlock
      - comment
      type: object
      properties:
        cidrBlock:
          type: string
          description: A <a href="https://www.rfc-editor.org/rfc/rfc4632.html" target="_blank">CIDR</a> block specifying a range of IP addresses that may access the cluster.
        comment:
          type: string
      additionalProperties: false
    RMS.EnterpriseIntegrationHub.Contracts.SetClusterSecurityRequest:
      type: object
      properties:
        minTlsVersion:
          type:
          - string
          - 'null'
      additionalProperties: false
    RMS.EnterpriseIntegrationHub.Contracts.AddCidrRequest:
      required:
      - cidrEntry
      type: object
      properties:
        cidrEntry:
          $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.CidrEntry'
      additionalProperties: false
    RMS.EnterpriseIntegrationHub.Contracts.Cluster:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        state:
          type:
          - string
          - 'null'
        cidrEntries:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.CidrEntry'
      additionalProperties: false
    RMS.EnterpriseIntegrationHub.Contracts.GetClusterSecurityResponse:
      type: object
      properties:
        minTlsVersion:
          type:
          - string
          - 'null'
        allConnectionsEncrypted:
          type: boolean
      additionalProperties: false
    RMS.EnterpriseIntegrationHub.Contracts.UpdateCidrRequest:
      type: object
      properties:
        addCidrEntries:
          type:
          - array
          - 'null'
          description: Array of entries that identify CIDR blocks that may access the cluser.
          items:
            $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.CidrEntry'
        removeCidrEntries:
          type:
          - array
          - 'null'
          description: Array CIDR blocks identifying IP addresses may no longer access the cluser.
          items:
            type: string
      additionalProperties: false
  securitySchemes:
    RMS_Auth:
      type: apiKey
      name: Authorization
      in: header
      description: An API key is a token that enables a client application to make requests to tenant applications running on Intelligent Risk Platform.
      x-default: XXXXXXXXXX
x-readme:
  explorer-enabled: false
  samples-languages:
  - curl
  - java
  - csharp
  - node
  - python
  proxy-enabled: true
  samples-enabled: true