Conga Account Attachments Whitelist API

The AccountAttachmentsWhitelist API from Conga — 1 operation(s) for accountattachmentswhitelist.

Operations 3

DELETE /v1/cs-account/admin/accountSettings/attachmentsWhitelist Deletes and resets attachments whitelist. #
GET /v1/cs-account/admin/accountSettings/attachmentsWhitelist Retrieves your current attachments whitelist. #
PUT /v1/cs-account/admin/accountSettings/attachmentsWhitelist Updates your attachments whitelist. #

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/conga-accountattachmentswhitelist-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

conga-accountattachmentswhitelist-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Conga Sign Account Attachments Whitelist API
  version: 1.0.0
servers:
- url: https://rls.congacloud.com/api/sign
security:
- JWT: []
tags:
- name: AccountAttachmentsWhitelist
paths:
  /v1/cs-account/admin/accountSettings/attachmentsWhitelist:
    delete:
      tags:
      - AccountAttachmentsWhitelist
      summary: Deletes and resets attachments whitelist.
      description: "Deletes attachments whitelist that you may have configured. \nYour attachments whitelist will be returned to their default values.\n\nAfter deletion, the system will revert to OneSpan's default allowed file types."
      operationId: AccountAttachmentsWhitelist_DeleteAccountAttachmentsWhitelist
      responses:
        '200':
          description: OK - Whitelist reset to defaults
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Not Authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Unexpected Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - JWT: []
    get:
      tags:
      - AccountAttachmentsWhitelist
      summary: Retrieves your current attachments whitelist.
      description: "Retrieves your attachments whitelist. The whitelist defines which file types are allowed \nas attachments in signing ceremonies.\n\nReturns a list of allowed file extensions (e.g., \"PDF\", \"TXT\", \"JPG\", \"DOC\")."
      operationId: AccountAttachmentsWhitelist_GetAccountAttachmentsWhitelist
      responses:
        '200':
          description: OK - Returns list of allowed file extensions
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
        '400':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Not Authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Unexpected Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - JWT: []
    put:
      tags:
      - AccountAttachmentsWhitelist
      summary: Updates your attachments whitelist.
      description: 'Updates your attachments whitelist. This defines which file types are allowed as attachments.


        Provide a list of file extensions (e.g., ["PDF", "TXT", "JPG", "DOC", "DOCX"]).


        Note: This endpoint uses PUT (full replacement), not PATCH (partial update).

        All file types must be specified; any types not included will be removed from the whitelist.'
      operationId: AccountAttachmentsWhitelist_UpdateAccountAttachmentsWhitelist
      requestBody:
        x-name: attachmentsWhitelist
        description: List of allowed file extension strings
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
        required: true
        x-position: 1
      responses:
        '200':
          description: OK - Whitelist updated successfully
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Not Authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Unexpected Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - JWT: []
components:
  schemas:
    Error:
      type: object
      additionalProperties: false
      properties:
        message:
          type:
          - string
          - 'null'
  securitySchemes:
    JWT:
      type: apiKey
      description: Provide oauth authentication
      name: Authorization
      in: header