Conga Field Set Settings API

The FieldSetSettings API from Conga — 2 operation(s) for fieldsetsettings.

Operations 3

GET /field-sets List field sets
GET /field-sets/{name} List fieldset fields
PUT /field-sets/{name} Update fields in fieldset

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-fieldsetsettings-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-fieldsetsettings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Administration Field Set Settings API
  version: 1.0.0
servers:
- url: https://rls.congacloud.com/api/revenue-admin/v1
security:
- Bearer: []
tags:
- name: FieldSetSettings
paths:
  /field-sets:
    get:
      tags:
      - FieldSetSettings
      summary: List field sets
      description: Retrieves the list of field sets.
      responses:
        '200':
          description: OK
        '204':
          description: No Content
  /field-sets/{name}:
    get:
      tags:
      - FieldSetSettings
      summary: List fieldset fields
      description: Retrieves the list of fields for a fieldset.
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
        '400':
          description: Bad Request
        '404':
          description: Not Found
    put:
      tags:
      - FieldSetSettings
      summary: Update fields in fieldset
      description: Add/Remove fields in a fieldset.
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
          text/json:
            schema:
              type: array
              items:
                type: string
          application/*+json:
            schema:
              type: array
              items:
                type: string
      responses:
        '200':
          description: OK
        '400':
          description: Bad Request
        '404':
          description: Not Found
components:
  securitySchemes:
    Bearer:
      type: apiKey
      description: Please insert JWT with Bearer into field
      name: Authorization
      in: header