Conga Price Program Associations API

The Price Program Associations API from Conga — 5 operation(s) for price program associations.

Operations 5

DELETE /business-objects/{businessObjectId}/price-program-associations Disassociate a businessObject from price programs based on the given… #
GET /business-objects/{businessObjectId}/price-programs List price program details which are associated with the given businessObjectId #
POST /price-program-associations Associate price program to businessObjects #
GET /price-programs/{priceProgramId}/business-objects List businessObject details which are associated with the given priceProgramId #
DELETE /price-programs/{priceProgramId}/price-program-associations Disassociate a price program from businessObjects based on the given… #

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-price-program-associations-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-price-program-associations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Incentive Administration Price Program Associations API
  version: 1.0.0
servers:
- url: https://rls.congacloud.com/api/incentive-admin/v1
security:
- Bearer: []
tags:
- name: Price Program Associations
paths:
  /business-objects/{businessObjectId}/price-program-associations:
    delete:
      tags:
      - Price Program Associations
      summary: Disassociate a businessObject from price programs based on the given…
      description: Deletes IncentiveAssociation based on businessObjectId and priceProgramIds.
      parameters:
      - name: businessObjectId
        in: path
        description: BusinessObject Id
        required: true
        schema:
          type: string
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PriceProgramIdsRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/PriceProgramIdsRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/PriceProgramIdsRequest'
      responses:
        '200':
          description: OK
      operationId: deleteBusinessObjectsByBusinessObjectIdPriceProgramAssociations
      x-operation-id-source: derived
  /business-objects/{businessObjectId}/price-programs:
    get:
      tags:
      - Price Program Associations
      summary: List price program details which are associated with the given businessObjectId
      description: List Price Program details.
      parameters:
      - name: businessObjectId
        in: path
        description: BusinessObject Id
        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: field
        in: query
        description: Pass Comma separated multiple fields
        schema:
          type: array
          items:
            type: string
      - name: filterExpression
        in: query
        description: Filter Expression
        schema:
          type: string
      responses:
        '200':
          description: OK
      operationId: getBusinessObjectsByBusinessObjectIdPricePrograms
      x-operation-id-source: derived
  /price-program-associations:
    post:
      tags:
      - Price Program Associations
      summary: Associate price program to businessObjects
      description: Creates multiple associations.
      requestBody:
        description: The list of price program associations
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/IncentiveAssociation'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/IncentiveAssociation'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/IncentiveAssociation'
      responses:
        '200':
          description: OK
      operationId: postPriceProgramAssociations
      x-operation-id-source: derived
  /price-programs/{priceProgramId}/business-objects:
    get:
      tags:
      - Price Program Associations
      summary: List businessObject details which are associated with the given priceProgramId
      description: List BusinessObject Details.
      parameters:
      - name: priceProgramId
        in: path
        description: PriceProgram Id
        required: true
        schema:
          type: string
      - name: type
        in: query
        description: BusinessObject Type
        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: field
        in: query
        description: Pass Comma separated multiple fields
        schema:
          type: array
          items:
            type: string
      - name: filterExpression
        in: query
        description: Filter Expression
        schema:
          type: string
      responses:
        '200':
          description: OK
      operationId: getPriceProgramsByPriceProgramIdBusinessObjects
      x-operation-id-source: derived
  /price-programs/{priceProgramId}/price-program-associations:
    delete:
      tags:
      - Price Program Associations
      summary: Disassociate a price program from businessObjects based on the given…
      description: Deletes IncentiveAssociation based on priceProgramId and businessObjectIds.
      parameters:
      - name: priceProgramId
        in: path
        description: Price Program Id
        required: true
        schema:
          type: string
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BusinessObjectIdsRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/BusinessObjectIdsRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/BusinessObjectIdsRequest'
      responses:
        '200':
          description: OK
      operationId: deletePriceProgramsByPriceProgramIdPriceProgramAssociations
      x-operation-id-source: derived
components:
  schemas:
    PriceProgramIdsRequest:
      type: object
      properties:
        PriceProgramIds:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    BusinessObjectIdsRequest:
      type: object
      properties:
        BusinessObjectIds:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    LookupObject:
      type: object
      properties:
        Id:
          type:
          - string
          - 'null'
        Name:
          type:
          - string
          - 'null'
      additionalProperties: false
    IncentiveAssociation:
      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'
        Incentive:
          $ref: '#/components/schemas/LookupObject'
        BusinessObjectType:
          type:
          - string
          - 'null'
        BusinessObjectId:
          type:
          - string
          - 'null'
        ContractNumber:
          type:
          - string
          - 'null'
      additionalProperties: {}
  securitySchemes:
    Bearer:
      type: apiKey
      description: Please insert JWT with Bearer into field
      name: Authorization
      in: header