Conga Attribute Groups API

The Attribute Groups API from Conga — 2 operation(s) for attribute groups.

Operations 7

DELETE /attribute-groups Delete attribute groups
GET /attribute-groups Retrieve attribute groups
PATCH /attribute-groups Update attribute groups
POST /attribute-groups Create attribute groups
DELETE /attribute-groups/{Id} Delete an attribute group
GET /attribute-groups/{Id} Retrieve an attribute group
PATCH /attribute-groups/{Id} Update an attribute group

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-attribute-groups-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-attribute-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Administration Attribute Groups API
  version: 1.0.0
servers:
- url: https://rls.congacloud.com/api/revenue-admin/v1
security:
- Bearer: []
tags:
- name: Attribute Groups
paths:
  /attribute-groups:
    delete:
      tags:
      - Attribute Groups
      summary: Delete attribute groups
      description: Deletes one or more attribute groups based on the input provided in the request body. Upon deletion of an attribute group, the API deletes the records of association between attribute group with attributes and product.
      requestBody:
        description: The list of attribute groups to delete
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/AttributeGroup'
            example:
            - Id: Id of the record to delete
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/AttributeGroup'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/AttributeGroup'
      responses:
        '200':
          description: OK
    get:
      tags:
      - Attribute Groups
      summary: Retrieve attribute groups
      description: Retrieves the collection of attribute groups.
      parameters:
      - name: filter
        in: query
        description: Optional filter parameters
        schema:
          type: array
          items:
            type: string
      - name: sort
        in: query
        description: Optional sort parameter
        schema:
          type: string
      - name: page
        in: query
        description: Page number
        schema:
          type: integer
          format: int32
          default: 1
      - name: limit
        in: query
        description: Number of items per page
        schema:
          type: integer
          format: int32
          default: 50
      - name: includes
        in: query
        description: Optional related entities to include
        schema:
          type: array
          items:
            type: string
      - name: field
        in: query
        description: Pass Comma separated mulitple fields
        schema:
          type: array
          items:
            type: string
      - name: filterExpression
        in: query
        description: ''
        schema:
          type: string
      responses:
        '200':
          description: OK
        '204':
          description: No Content
    patch:
      tags:
      - Attribute Groups
      summary: Update attribute groups
      description: 'Updates one or more attribute groups based on the details provided in the request body.



        When executed, the API returns the ID and the structure of the updated attribute group.'
      requestBody:
        description: The list of attribute groups with updated data
        content:
          application/json:
            schema:
              type: array
              items:
                type: object
                additionalProperties: {}
            example:
            - Name: AttributeGroupName
              AttributeMatrix: null
              Description: Attribute Group description
              ThreeColumnAttributeDisplay: false
              TwoColumnAttributeDisplay: false
              Id: Id of the record
          text/json:
            schema:
              type: array
              items:
                type: object
                additionalProperties: {}
          application/*+json:
            schema:
              type: array
              items:
                type: object
                additionalProperties: {}
      responses:
        '200':
          description: OK
    post:
      tags:
      - Attribute Groups
      summary: Create attribute groups
      description: 'Creates mone or more attribute groups based on the details provided in the request body.



        When executed, the API returns the ID and the structure of the newly created attribute group.'
      requestBody:
        description: The list of attribute groups to create
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/AttributeGroup'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/AttributeGroup'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/AttributeGroup'
      responses:
        '200':
          description: OK
  /attribute-groups/{Id}:
    delete:
      tags:
      - Attribute Groups
      summary: Delete an attribute group
      description: Deletes a single attribute group record.
      parameters:
      - name: Id
        in: path
        description: The identifier of the attribute group to delete
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
    get:
      tags:
      - Attribute Groups
      summary: Retrieve an attribute group
      description: Retrieves a single attribute group record.
      parameters:
      - name: Id
        in: path
        description: The identifier of the attribute group
        required: true
        schema:
          type: string
      - name: includes
        in: query
        description: Optional related entities to include
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
    patch:
      tags:
      - Attribute Groups
      summary: Update an attribute group
      description: Updates a single attribute group record.
      parameters:
      - name: Id
        in: path
        description: The identifier of the attribute group to update
        required: true
        schema:
          type: string
      requestBody:
        description: The updated data of the attribute group
        content:
          application/json:
            schema:
              type: object
              additionalProperties: {}
            example:
              Name: AttributeGroupName
              AttributeMatrix: null
              Description: Attribute Group description
              ThreeColumnAttributeDisplay: false
              TwoColumnAttributeDisplay: false
          text/json:
            schema:
              type: object
              additionalProperties: {}
          application/*+json:
            schema:
              type: object
              additionalProperties: {}
      responses:
        '200':
          description: OK
components:
  schemas:
    AttributeGroup:
      type: object
      properties:
        Id:
          type:
          - string
          - 'null'
        Name:
          type:
          - string
          - 'null'
        CreatedBy:
          $ref: '#/components/schemas/LookupObject'
        CreatedDate:
          type: string
          format: date-time
        ModifiedBy:
          $ref: '#/components/schemas/LookupObject'
        ModifiedDate:
          type: string
          format: date-time
        ExternalId:
          type:
          - string
          - 'null'
        ETag:
          type:
          - string
          - 'null'
        AttributeMatrix:
          $ref: '#/components/schemas/LookupObject'
        Description:
          type:
          - string
          - 'null'
        ThreeColumnAttributeDisplay:
          type:
          - boolean
          - 'null'
        TwoColumnAttributeDisplay:
          type:
          - boolean
          - 'null'
      additionalProperties: {}
      example:
        Name: AttributeGroupName
        AttributeMatrix: null
        Description: Attribute Group description
        ThreeColumnAttributeDisplay: false
        TwoColumnAttributeDisplay: false
    LookupObject:
      type: object
      properties:
        Id:
          type:
          - string
          - 'null'
        Name:
          type:
          - string
          - 'null'
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: Please insert JWT with Bearer into field
      name: Authorization
      in: header