Conga Account Signing Logos API

The AccountSigningLogos API from Conga — 1 operation(s) for accountsigninglogos.

Operations 2

POST /v1/cs-account/admin/signingLogos Retrieve an account's signing ceremony logos #
GET /v1/cs-account/admin/signingLogos Add, update, or delete signing ceremony logos #

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-accountsigninglogos-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-accountsigninglogos-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Conga Sign Account Signing Logos API
  version: 1.0.0
servers:
- url: https://rls.congacloud.com/api/sign
security:
- JWT: []
tags:
- name: AccountSigningLogos
paths:
  /v1/cs-account/admin/signingLogos:
    post:
      tags:
      - AccountSigningLogos
      summary: Retrieve an account's signing ceremony logos
      description: "Adds, updates or deletes an account's customized signing ceremony logos. To add or update a signing ceremony logo for a language, pass the base-64 decoded image (data URI) with the language.\nTo delete all signing ceremony logos, provide an empty {} request body.\n            \nNote that\n1. The image has to be one of the following formats - jpeg, png, gif, bmp or svg.\n2. The maximum supported size for an image is 1MB\n3. The recommended dimensions for a Signing Ceremony logo is 258px X 40 px."
      operationId: AccountSigningLogos_CreateAccountSigningLogos
      requestBody:
        x-name: logoData
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/SigningLogo'
        required: true
        x-position: 1
      responses:
        '200':
          description: List of SigningLogo models.
        '204':
          description: No Content
        '401':
          description: Not Authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error2'
        '403':
          description: Access Denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error2'
      security:
      - JWT: []
    get:
      tags:
      - AccountSigningLogos
      summary: Add, update, or delete signing ceremony logos
      description: 'Retrieves an account''s customized logo for use during the signing ceremony. In addition, the corresponding

        language for the account is retrieved.'
      operationId: AccountSigningLogos_GetAccountSigningLogos
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultOfSigningLogo'
        '401':
          description: Not Authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error2'
        '403':
          description: Access Denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error2'
      security:
      - JWT: []
components:
  schemas:
    Error2:
      type: object
      description: Object representing an error condition
      additionalProperties: false
      properties:
        code:
          type:
          - integer
          - 'null'
          description: The error code
          format: int32
        entity:
          description: The Microsoft Dynamics entity
          oneOf:
          - $ref: '#/components/schemas/Entity'
        message:
          type: string
          description: The error message
        messageKey:
          type: string
          description: The error message key
        name:
          type: string
          description: The error name
        technical:
          type: string
          description: Technical information about the error
    ResultOfSigningLogo:
      type: object
      description: Object used to manage OneSpan list types
      additionalProperties: false
      properties:
        count:
          type: integer
          description: Count
          format: int32
        results:
          type: array
          description: Results
          items:
            $ref: '#/components/schemas/SigningLogo'
    Entity:
      type: object
      description: Object used to manage entities from Microsoft Dynamics
      additionalProperties: false
      properties:
        data:
          type: object
          description: Custom data for the entity
          additionalProperties: {}
        id:
          type: string
          description: Unique id of the entity
        name:
          type: string
          description: Name of the entity
    SigningLogo:
      type: object
      description: Object to manage a signing logo
      additionalProperties: false
      properties:
        language:
          type: string
          description: 'Available options: en, fr, it, ru, es, pt, de, nl, da, el, zh-CN, zh-TW, ja, ko'
        image:
          type: string
          description: Image
  securitySchemes:
    JWT:
      type: apiKey
      description: Provide oauth authentication
      name: Authorization
      in: header