Moody's RMS Server Instances API

The Server Instances API from Moody's RMS — 3 operation(s) for server instances.

Operations 4

GET /v1/sql-instances/{instanceName} Get server instance #
GET /v1/sql-instances Get server instances #
GET /v1/sql-instances/{instanceName}/groups Get groups by server instance #
PATCH /v1/sql-instances/{instanceName}/groups Update group access by server instance #

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-server-instances-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-server-instances-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Data Bridge Server Instances 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: Server Instances
paths:
  /v1/sql-instances/{instanceName}:
    get:
      tags:
      - Server Instances
      summary: Get server instance
      operationId: getinstance
      parameters:
      - name: instanceName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK. All went well.
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.SqlInstance'
            application/json:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.SqlInstance'
            text/json:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.SqlInstance'
        '400':
          description: Bad Request. Some of the provided parameters were not valid.
        '404':
          description: Not found. The entity you are trying to interact with does not exist.
        '500':
          description: Internal Server Error. If the problem persists you may want to contact the Administrator.
  /v1/sql-instances:
    get:
      tags:
      - Server Instances
      summary: Get server instances
      operationId: getinstances
      parameters:
      - name: adminMode
        description: Enables changes to a resource owned by others. If `true`, returns server instances. The principal making the request must have the appropriate permissions (e.g. Admin role).
        in: query
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: OK. All went well.
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.SqlInstance'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.SqlInstance'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.SqlInstance'
        '404':
          description: Not found. The entity you are trying to interact with does not exist.
        '500':
          description: Internal Server Error. If the problem persists you may want to contact the Administrator.
  /v1/sql-instances/{instanceName}/groups:
    get:
      tags:
      - Server Instances
      summary: Get groups by server instance
      operationId: getgroupsbyinstance
      parameters:
      - name: instanceName
        in: path
        required: true
        schema:
          type: string
      - name: offset
        in: query
        schema:
          type: integer
          format: int32
          default: 0
      - name: limit
        in: query
        schema:
          type: integer
          format: int32
          default: 100
      - name: adminMode
        description: Enables changes to a resource owned by others. If `true`, returns information about all server instances. The principal making the request must have the appropriate permissions (e.g. Admin role).
        in: query
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: OK. All went well.
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.FilteredGroups'
            application/json:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.FilteredGroups'
            text/json:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.FilteredGroups'
        '400':
          description: Bad Request. Some of the provided parameters were not valid.
        '404':
          description: Not found. The entity you are trying to interact with does not exist.
        '500':
          description: Internal Server Error. If the problem persists you may want to contact the Administrator.
    patch:
      tags:
      - Server Instances
      summary: Update group access by server instance
      operationId: updategroupaccessbyinstance
      parameters:
      - name: instanceName
        in: path
        required: true
        schema:
          type: string
      - name: adminMode
        description: Enables changes to a resource owned by others. If `true`, updates the groups assigned to all server instances. The principal making the request must have the appropriate permissions (e.g. Admin role).
        in: query
        schema:
          type: boolean
          default: false
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.PatchSqlInstanceOperationRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.PatchSqlInstanceOperationRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.PatchSqlInstanceOperationRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.PatchSqlInstanceOperationRequest'
      responses:
        '200':
          description: OK. All went well.
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.FilteredGroups'
            application/json:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.FilteredGroups'
            text/json:
              schema:
                $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.FilteredGroups'
        '400':
          description: Bad Request. Some of the provided parameters were not valid.
        '404':
          description: Not found. The entity you are trying to interact with does not exist.
        '500':
          description: Internal Server Error. If the problem persists you may want to contact the Administrator.
components:
  schemas:
    RMS.EnterpriseIntegrationHub.Contracts.SqlInstance:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        uid:
          type:
          - string
          - 'null'
        endpoint:
          type:
          - string
          - 'null'
        internalEndpoint:
          type:
          - string
          - 'null'
        status:
          type:
          - string
          - 'null'
        totalDiskSpaceInMb:
          type:
          - integer
          - 'null'
          format: int32
        availableDiskSpaceInMb:
          type:
          - integer
          - 'null'
          format: int32
        usedDiskSpaceInMb:
          type:
          - integer
          - 'null'
          format: int32
        databaseLimit:
          type:
          - integer
          - 'null'
          format: int32
        pinnedDatabaseLimit:
          type:
          - integer
          - 'null'
          format: int32
      additionalProperties: false
    RMS.EnterpriseIntegrationHub.Contracts.PatchSqlInstanceOperationRequest:
      type: object
      properties:
        groupOperations:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.GroupOperation'
      additionalProperties: false
    RMS.EnterpriseIntegrationHub.Contracts.Group:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
      additionalProperties: false
    RMS.EnterpriseIntegrationHub.Contracts.GroupAction:
      description: Grant or revoke group access rights. If `0`, access is revoked. If `1`, access is granted.
      enum:
      - 0
      - 1
      type: integer
      format: int32
    RMS.EnterpriseIntegrationHub.Contracts.FilteredGroups:
      type: object
      properties:
        filteredResult:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.Group'
        count:
          type: integer
          format: int32
        isFirst:
          type: boolean
        isLast:
          type: boolean
      additionalProperties: false
    RMS.EnterpriseIntegrationHub.Contracts.GroupOperation:
      type: object
      properties:
        groupAction:
          $ref: '#/components/schemas/RMS.EnterpriseIntegrationHub.Contracts.GroupAction'
        groupId:
          description: ID of group.
          type:
          - string
          - 'null'
      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