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 businessObjectId and priceProgramIds.
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 priceProgramId and businessObjectIds.

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 email required.

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 businessObjectId and priceProgramIds.
      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
  /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
  /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
  /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
  /price-programs/{priceProgramId}/price-program-associations:
    delete:
      tags:
      - Price Program Associations
      summary: Disassociate a price program from businessObjects based on the given priceProgramId and businessObjectIds.
      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
components:
  schemas:
    BusinessObjectIdsRequest:
      type: object
      properties:
        BusinessObjectIds:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    PriceProgramIdsRequest:
      type: object
      properties:
        PriceProgramIds:
          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