Conga Settings API

The Settings API from Conga — 2 operation(s) for settings.

Operations 3

GET /feature-settings Retrieve all feature settings #
PATCH /feature-settings Update the specified FeatureSettings #
GET /feature-settings/{featureSettingName} Retrieve a single feature setting by name #

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-settings-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

conga-settings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Administration Settings API
  version: 1.0.0
servers:
- url: https://rls.congacloud.com/api/revenue-admin/v1
security:
- Bearer: []
tags:
- name: Settings
paths:
  /feature-settings:
    get:
      tags:
      - Settings
      summary: Retrieve all feature settings
      description: ''
      responses:
        '200':
          description: OK
      operationId: getFeatureSettings
      x-operation-id-source: derived
    patch:
      tags:
      - Settings
      summary: Update the specified FeatureSettings
      description: 'Updates one or more feature settings with the provided boolean values.

        All feature setting keys must be valid and non-empty.'
      requestBody:
        description: A json object containing feature setting names as keys and their corresponding boolean values
        content:
          application/json:
            schema:
              type: object
              additionalProperties:
                type: boolean
          text/json:
            schema:
              type: object
              additionalProperties:
                type: boolean
          application/*+json:
            schema:
              type: object
              additionalProperties:
                type: boolean
      responses:
        '200':
          description: Returns 200 when feature settings are successfully updated
        '400':
          description: Returns error message if featureSettings is null, empty, or contains invalid keys
        '500':
          description: Returns error message if an internal server error occurs
      operationId: patchFeatureSettings
      x-operation-id-source: derived
  /feature-settings/{featureSettingName}:
    get:
      tags:
      - Settings
      summary: Retrieve a single feature setting by name
      description: ''
      parameters:
      - name: featureSettingName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
        '404':
          description: Not Found
      operationId: getFeatureSettingsByFeatureSettingName
      x-operation-id-source: derived
components:
  securitySchemes:
    Bearer:
      type: apiKey
      description: Please insert JWT with Bearer into field
      name: Authorization
      in: header