Conga Deal Guidance Dimension Set Members API

The Deal Guidance Dimension Set Members API from Conga — 2 operation(s) for deal guidance dimension set members.

Operations 7

DELETE /deal-guidance-dimension-sets/{ParentId}/dimensions Delete deal guidance dimension set members #
GET /deal-guidance-dimension-sets/{ParentId}/dimensions Retrieve deal guidance dimension set members #
PATCH /deal-guidance-dimension-sets/{ParentId}/dimensions Update deal guidance dimension set members #
POST /deal-guidance-dimension-sets/{ParentId}/dimensions Create deal guidance dimension set members #
DELETE /deal-guidance-dimension-sets/{ParentId}/dimensions/{Id} Delete a deal guidance dimension set member #
GET /deal-guidance-dimension-sets/{ParentId}/dimensions/{Id} Retrieve a deal guidance dimension set member #
PATCH /deal-guidance-dimension-sets/{ParentId}/dimensions/{Id} Update a deal guidance dimension set member #

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-deal-guidance-dimension-set-members-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-deal-guidance-dimension-set-members-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Administration Deal Guidance Dimension Set Members API
  version: 1.0.0
servers:
- url: https://rls.congacloud.com/api/revenue-admin/v1
security:
- Bearer: []
tags:
- name: Deal Guidance Dimension Set Members
paths:
  /deal-guidance-dimension-sets/{ParentId}/dimensions:
    delete:
      tags:
      - Deal Guidance Dimension Set Members
      summary: Delete deal guidance dimension set members
      description: Deletes dimension for a dimension set.
      parameters:
      - name: ParentId
        in: path
        description: The identifier of the parent deal guidance dimension set
        required: true
        schema:
          type: string
      requestBody:
        description: The list of deal guidance dimension set members to delete
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/DealGuidanceDimensionSetMember'
            example:
            - Id: Id of the record to delete
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/DealGuidanceDimensionSetMember'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/DealGuidanceDimensionSetMember'
      responses:
        '200':
          description: OK
      operationId: deleteDealGuidanceDimensionSetsByParentIdDimensions
      x-operation-id-source: derived
    get:
      tags:
      - Deal Guidance Dimension Set Members
      summary: Retrieve deal guidance dimension set members
      description: Retrieves the list of dimension set members.
      parameters:
      - name: ParentId
        in: path
        description: The identifier of the parent deal guidance dimension set
        required: true
        schema:
          type: string
      - name: filter
        in: query
        description: An optional array of filters
        schema:
          type: array
          items:
            type: string
      - name: sort
        in: query
        description: An optional sort criteria
        schema:
          type: string
      - name: page
        in: query
        description: The page number for pagination
        schema:
          type: integer
          format: int32
          default: 1
      - name: limit
        in: query
        description: The maximum number of records per page
        schema:
          type: integer
          format: int32
          default: 50
      - name: includes
        in: query
        description: An optional array of included fields
        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
      operationId: getDealGuidanceDimensionSetsByParentIdDimensions
      x-operation-id-source: derived
    patch:
      tags:
      - Deal Guidance Dimension Set Members
      summary: Update deal guidance dimension set members
      description: Updates dimension for a dimension set.
      parameters:
      - name: ParentId
        in: path
        description: The identifier of the parent deal guidance dimension set
        required: true
        schema:
          type: string
      requestBody:
        description: The list of records to be updated
        content:
          application/json:
            schema:
              type: array
              items:
                type: object
                additionalProperties: {}
            example:
            - Name: DealGuidanceDimensionSetMemberName
              Dimension:
                Id: DimensionId
                Name: DimensionName
              InputType: Input_type
              Sequence: 1
              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
      operationId: patchDealGuidanceDimensionSetsByParentIdDimensions
      x-operation-id-source: derived
    post:
      tags:
      - Deal Guidance Dimension Set Members
      summary: Create deal guidance dimension set members
      description: Creates the dimensions for a dimension set.
      parameters:
      - name: ParentId
        in: path
        description: The identifier of the parent deal guidance dimension set
        required: true
        schema:
          type: string
      requestBody:
        description: The list of deal guidance dimension set members to add to the collection
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/DealGuidanceDimensionSetMember'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/DealGuidanceDimensionSetMember'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/DealGuidanceDimensionSetMember'
      responses:
        '200':
          description: OK
      operationId: postDealGuidanceDimensionSetsByParentIdDimensions
      x-operation-id-source: derived
  /deal-guidance-dimension-sets/{ParentId}/dimensions/{Id}:
    delete:
      tags:
      - Deal Guidance Dimension Set Members
      summary: Delete a deal guidance dimension set member
      description: Deletes a dimension record for a given dimension set.
      parameters:
      - name: ParentId
        in: path
        description: The identifier of the parent deal guidance dimension set
        required: true
        schema:
          type: string
      - name: Id
        in: path
        description: The identifier of the deal guidance dimension set member
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      operationId: deleteDealGuidanceDimensionSetsByParentIdDimensionsById
      x-operation-id-source: derived
    get:
      tags:
      - Deal Guidance Dimension Set Members
      summary: Retrieve a deal guidance dimension set member
      description: Retrieves a dimension record for a given dimension set.
      parameters:
      - name: ParentId
        in: path
        description: The identifier of the parent deal guidance dimension set
        required: true
        schema:
          type: string
      - name: Id
        in: path
        description: The identifier of the deal guidance dimension set member
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
        '204':
          description: No Content
      operationId: getDealGuidanceDimensionSetsByParentIdDimensionsById
      x-operation-id-source: derived
    patch:
      tags:
      - Deal Guidance Dimension Set Members
      summary: Update a deal guidance dimension set member
      description: Updates a dimension record for a given dimension set.
      parameters:
      - name: ParentId
        in: path
        description: The identifier of the parent deal guidance dimension set
        required: true
        schema:
          type: string
      - name: Id
        in: path
        description: The identifier of the deal guidance dimension set member
        required: true
        schema:
          type: string
      requestBody:
        description: The updated state of the deal guidance dimension set member
        content:
          application/json:
            schema:
              type: object
              additionalProperties: {}
            example:
              Name: DealGuidanceDimensionSetMemberName
              Dimension:
                Id: DimensionId
                Name: DimensionName
              InputType: Input_type
              Sequence: 1
          text/json:
            schema:
              type: object
              additionalProperties: {}
          application/*+json:
            schema:
              type: object
              additionalProperties: {}
      responses:
        '200':
          description: OK
      operationId: patchDealGuidanceDimensionSetsByParentIdDimensionsById
      x-operation-id-source: derived
components:
  schemas:
    LookupObject:
      type: object
      properties:
        Id:
          type:
          - string
          - 'null'
        Name:
          type:
          - string
          - 'null'
      additionalProperties: false
    DealGuidanceDimensionSetMember:
      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'
        DimensionSet:
          $ref: '#/components/schemas/LookupObject'
        Dimension:
          $ref: '#/components/schemas/LookupObject'
        InputType:
          type:
          - string
          - 'null'
        Sequence:
          type:
          - number
          - 'null'
          format: double
      additionalProperties: {}
      example:
        Name: DealGuidanceDimensionSetMemberName
        Dimension:
          Id: DimensionId
          Name: DimensionName
        InputType: Input_type
        Sequence: 1
  securitySchemes:
    Bearer:
      type: apiKey
      description: Please insert JWT with Bearer into field
      name: Authorization
      in: header