airSlate Document Groups API

The Document Groups API from airSlate — 4 operation(s) for document groups.

Operations 6

POST /documentgroup Create a document group #
GET /documentgroup/{document_group_id} Retrieve a document group #
DELETE /documentgroup/{document_group_id} Delete a document group #
POST /documentgroup/{document_group_id}/downloadall Download all documents in a group #
GET /v2/document-groups/{document_group_id}/recipients List document group recipients #
PUT /v2/document-groups/{document_group_id}/recipients Update document group recipients #

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/airslate-document-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

airslate-document-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: airSlate signNow REST Document Fields Document Groups API
  version: v2
  description: 'Best-effort OpenAPI 3.1 representation of the airSlate signNow REST API.

    airSlate exposes its developer API primarily through the signNow product

    family. Endpoint paths and request shapes are derived from the official

    signNow Python SDK (github.com/signnow/SNPythonSDK) and public docs at

    https://docs.signnow.com/. Authentication uses OAuth 2.0 with a Basic

    token for the application credential and resource-owner password or

    client credentials grant for the access token.

    '
  contact:
    name: airSlate signNow
    url: https://docs.signnow.com/
servers:
- url: https://api.signnow.com
  description: signNow production API
- url: https://api-eval.signnow.com
  description: signNow evaluation/sandbox API
security:
- BearerAuth: []
tags:
- name: Document Groups
paths:
  /documentgroup:
    post:
      tags:
      - Document Groups
      summary: Create a document group
      operationId: createDocumentGroup
      responses:
        '201':
          description: Created
  /documentgroup/{document_group_id}:
    get:
      tags:
      - Document Groups
      summary: Retrieve a document group
      operationId: getDocumentGroup
      parameters:
      - name: document_group_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
    delete:
      tags:
      - Document Groups
      summary: Delete a document group
      operationId: deleteDocumentGroup
      parameters:
      - name: document_group_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Deleted
  /documentgroup/{document_group_id}/downloadall:
    post:
      tags:
      - Document Groups
      summary: Download all documents in a group
      operationId: downloadDocumentGroup
      parameters:
      - name: document_group_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
  /v2/document-groups/{document_group_id}/recipients:
    get:
      tags:
      - Document Groups
      summary: List document group recipients
      operationId: getDocumentGroupRecipients
      parameters:
      - name: document_group_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
    put:
      tags:
      - Document Groups
      summary: Update document group recipients
      operationId: updateDocumentGroupRecipients
      parameters:
      - name: document_group_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: 'HTTP Basic auth carrying the application Basic Token (base64 of

        client_id:client_secret) used against POST /oauth2/token.

        '
    BearerAuth:
      type: http
      scheme: bearer
      description: 'OAuth 2.0 bearer access token issued by /oauth2/token. Required on

        all resource endpoints.

        '