XSKY email-groups API

EmailGroupController Operations about Email

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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

xsky-email-groups-api-openapi.yml Raw ↑
swagger: '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
basePath: /v1
tags:
- name: email-groups
  description: 'EmailGroupController Operations about Email

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