Amazon Monitron ProjectAdmins API

The ProjectAdmins API from Amazon Monitron — 2 operation(s) for projectadmins.

Operations 4

GET /projects/{projectName}/admins Amazon Monitron List Project Admin Users #
POST /projects/{projectName}/admins Amazon Monitron Associate Project Admin User #
DELETE /projects/{projectName}/admins/{userArn} Amazon Monitron Disassociate Project Admin User #
GET /projects/{projectName}/admins/{userArn} Amazon Monitron Get Project Admin User #

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/amazon-monitron-projectadmins-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

amazon-monitron-projectadmins-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Amazon Monitron is an end-to-end system that uses machine learning to detect abnormal behavior in industrial machinery, enabling predictive maintenance.
  title: Amazon Monitron Project Admins API
  version: '2020-10-01'
  x-generated-from: documentation
  x-last-validated: '2026-04-19'
servers:
- description: Amazon Monitron API endpoint
  url: https://monitron.us-east-1.amazonaws.com
security:
- awsSigV4: []
tags:
- name: ProjectAdmins
paths:
  /projects/{projectName}/admins:
    get:
      description: Lists all project admins for a Monitron project.
      operationId: ListProjectAdminUsers
      parameters:
      - description: The name of the project.
        in: path
        name: projectName
        required: true
        schema:
          type: string
      - description: Max results.
        in: query
        name: maxResults
        schema:
          type: integer
      - description: Pagination token.
        in: query
        name: nextToken
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
              examples:
                ListProjectAdminUsers200Example:
                  summary: Default ListProjectAdminUsers 200 response
                  x-microcks-default: true
                  value:
                    result: success
          description: Success
      summary: Amazon Monitron List Project Admin Users
      tags:
      - ProjectAdmins
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      description: Associate an administrator to a Monitron project.
      operationId: AssociateProjectAdminUser
      parameters:
      - description: The name of the project.
        in: path
        name: projectName
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              properties:
                userArn:
                  type: string
              type: object
        required: true
      responses:
        '200':
          description: Success
      summary: Amazon Monitron Associate Project Admin User
      tags:
      - ProjectAdmins
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /projects/{projectName}/admins/{userArn}:
    delete:
      description: Removes a Monitron project admin.
      operationId: DisassociateProjectAdminUser
      parameters:
      - description: The name of the project.
        in: path
        name: projectName
        required: true
        schema:
          type: string
      - description: The ARN of the user.
        in: path
        name: userArn
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
      summary: Amazon Monitron Disassociate Project Admin User
      tags:
      - ProjectAdmins
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    get:
      description: Gets a Monitron project administrator.
      operationId: GetProjectAdminUser
      parameters:
      - description: The name of the project.
        in: path
        name: projectName
        required: true
        schema:
          type: string
      - description: The ARN of the user.
        in: path
        name: userArn
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
      summary: Amazon Monitron Get Project Admin User
      tags:
      - ProjectAdmins
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  securitySchemes:
    awsSigV4:
      description: AWS Signature Version 4
      in: header
      name: Authorization
      type: apiKey