Conga Account Attachments Blacklist API

The AccountAttachmentsBlacklist API from Conga — 1 operation(s) for accountattachmentsblacklist.

Operations 1

GET /v1/cs-account/admin/accountSettings/attachmentsBlacklist Retrieves a list of blacklisted attachment types. #

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-accountattachmentsblacklist-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-accountattachmentsblacklist-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Conga Sign Account Attachments Blacklist API
  version: 1.0.0
servers:
- url: https://rls.congacloud.com/api/sign
security:
- JWT: []
tags:
- name: AccountAttachmentsBlacklist
paths:
  /v1/cs-account/admin/accountSettings/attachmentsBlacklist:
    get:
      tags:
      - AccountAttachmentsBlacklist
      summary: Retrieves a list of blacklisted attachment types.
      description: "An attachment blacklist is a list of file types that a signer cannot upload to a transaction. \nFor example, .exe files may be blacklisted, meaning that a signer cannot attach an .exe file \nto the transaction.\n\nReturns a list of blocked file extensions (e.g., \"EXE\", \"DLL\", \"MSI\", \"DMG\", \"SO\").\n\nNote: This endpoint is READ-ONLY. The blacklist is managed by OneSpan system administrators \nand cannot be modified via the API."
      operationId: AccountAttachmentsBlacklist_GetAccountAttachmentsBlacklist
      responses:
        '200':
          description: OK - Returns list of blacklisted 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: []
components:
  schemas:
    Error:
      type: object
      additionalProperties: false
      properties:
        message:
          type:
          - string
          - 'null'
  securitySchemes:
    JWT:
      type: apiKey
      description: Provide oauth authentication
      name: Authorization
      in: header