XSKY email-groups API

EmailGroupController Operations about Email

Operations 5

GET /email-groups/ #
POST /email-groups/ #
GET /email-groups/{group_id} #
PUT /email-groups/{group_id} #
DELETE /email-groups/{group_id} #

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/xsky-email-groups-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

xsky-email-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: XMS is the controller of distributed storage system
  version: SDS_4.2.000.0.200302
  title: XMS access-paths Email Groups API
  contact: {}
  license:
    name: Commercial
servers:
- url: /v1
tags:
- name: email-groups
  description: 'EmailGroupController Operations about Email

    '
paths:
  /email-groups/:
    get:
      tags:
      - email-groups
      description: List all email groups
      operationId: ListEmailGroups
      parameters:
      - name: limit
        in: query
        description: paging param
        required: false
        x-exportParamName: Limit
        schema:
          type: integer
          format: int64
      - name: offset
        in: query
        description: paging param
        required: false
        x-exportParamName: Offset
        schema:
          type: integer
          format: int64
      - name: alert_group_id
        in: query
        description: alert group id
        required: false
        x-exportParamName: AlertGroupId
        schema:
          type: integer
          format: int64
      - name: name
        in: query
        description: name of email groups
        required: false
        x-exportParamName: Name
        schema:
          type: string
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailGroupsResp'
        400:
          description: BadRequest
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    post:
      tags:
      - email-groups
      description: create email group
      operationId: CreateEmailGroup
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailGroupResp'
        400:
          description: BadRequest
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailGroupUpdateReq'
        description: email group
        required: true
  /email-groups/{group_id}:
    get:
      tags:
      - email-groups
      description: get email group
      operationId: GetEmailGroup
      parameters:
      - name: group_id
        in: path
        description: the id of email group
        required: true
        x-exportParamName: GroupId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailGroupResp'
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    put:
      tags:
      - email-groups
      description: update email group
      operationId: UpdateEmailGroup
      parameters:
      - name: group_id
        in: path
        description: the id of email group
        required: true
        x-exportParamName: GroupId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailGroupResp'
        400:
          description: BadRequest
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailGroupUpdateReq'
        description: email group
        required: true
    delete:
      tags:
      - email-groups
      description: delete email group
      operationId: DeleteEmailGroup
      parameters:
      - name: group_id
        in: path
        description: the id of email group
        required: true
        x-exportParamName: GroupId
        schema:
          type: integer
          format: int64
      responses:
        204:
          description: No Content
        400:
          description: BadRequest
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
components:
  schemas:
    EmailGroupUpdateReq:
      type: object
      required:
      - email_group
      properties:
        email_group:
          $ref: '#/components/schemas/EmailGroupUpdateReq_EmailGroup'
      title: EmailGroupUpdateReq
      example:
        email_group:
          emails:
          - emails
          - emails
          name: name
    EmailGroupsResp:
      type: object
      required:
      - email_groups
      properties:
        email_groups:
          type: array
          description: email groups
          items:
            $ref: '#/components/schemas/EmailGroupRecord'
      title: EmailGroupsResp
      example:
        email_groups:
        - ''
        - ''
    EmailGroup:
      type: object
      properties:
        create:
          type: string
          format: date-time
        emails:
          type: array
          items:
            type: string
        id:
          type: integer
          format: int64
        name:
          type: string
        update:
          type: string
          format: date-time
      title: EmailGroup
      description: EmailGroup defines the email group
    EmailGroupUpdateReq_EmailGroup:
      type: object
      required:
      - emails
      - name
      properties:
        emails:
          type: array
          items:
            type: string
        name:
          type: string
      title: EmailGroupUpdateReq_EmailGroup
      example:
        emails:
        - emails
        - emails
        name: name
    EmailGroupResp:
      type: object
      required:
      - email_group
      properties:
        email_group:
          description: email group
          $ref: '#/components/schemas/EmailGroupRecord'
      title: EmailGroupResp
      example:
        email_group: ''
    EmailGroupRecord:
      title: EmailGroupRecord
      allOf:
      - $ref: '#/components/schemas/EmailGroup'
      description: EmailGroupRecord defines email group record
  securitySchemes:
    tokenInHeader:
      description: auth by token
      type: apiKey
      name: Xms-Auth-Token
      in: header
    tokenInQuery:
      description: auth by token
      type: apiKey
      name: token
      in: query