Conga Rebate Programs API

⚠️ Deprecated: Rebate Program APIs have been deprecated from the Rebates-Admin Service. Please find these APIs under Incentive Programs here → /api/incentive-admin/swagger/index.html

Business capability
Discount & Promotion Management BC-440.30

Operations 7

DELETE /programs Delete Rebate Programs
GET /programs Retrieve Rebate Programs
PATCH /programs Update Rebate Programs
POST /programs Create Rebate Programs
DELETE /programs/{Id} Delete a Rebate Program
GET /programs/{Id} Retrieve a Rebate Program
PATCH /programs/{Id} Update a Rebate Program

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-rebate-programs-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-rebate-programs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rebate Administration Rebate Programs API
  version: 1.0.0
  description: "<p>\n  <H3>\n    <strong>⚠️ Deprecated:</strong> Rebate Program APIs have been deprecated from the Rebates-Admin Service.</H3>\n</p>\n<p>\n  <H3>Please find these APIs under Incentive Programs here → <a href=\"/api/incentive-admin/swagger/index.html\">/api/incentive-admin/swagger/index.html</a></H3>\n</p>"
servers:
- url: https://rls.congacloud.com/api/rebates-admin/v1
security:
- Bearer: []
tags:
- name: Rebate Programs
  description: "<p>\n  <H3>\n    <strong>⚠️ Deprecated:</strong> Rebate Program APIs have been deprecated from the Rebates-Admin Service.</H3>\n</p>\n<p>\n  <H3>Please find these APIs under Incentive Programs here → <a href=\"/api/incentive-admin/swagger/index.html\">/api/incentive-admin/swagger/index.html</a></H3>\n</p>"
paths:
  /programs:
    delete:
      tags:
      - Rebate Programs
      summary: Delete Rebate Programs
      description: Deletes multiple rebate programs
      requestBody:
        description: The list of rebate programs to delete
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/IncentiveProgram'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/IncentiveProgram'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/IncentiveProgram'
      responses:
        '200':
          description: OK
      deprecated: true
    get:
      tags:
      - Rebate Programs
      summary: Retrieve Rebate Programs
      description: Retrieves the collection of rebate programs.
      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 multiple fields
        schema:
          type: array
          items:
            type: string
      - name: filterExpression
        in: query
        description: Optional filter expression
        schema:
          type: string
      responses:
        '200':
          description: OK
        '204':
          description: No Content
      deprecated: true
    patch:
      tags:
      - Rebate Programs
      summary: Update Rebate Programs
      description: Updates multiple rebate programs
      requestBody:
        description: The list of rebate programs with updated data
        content:
          application/json:
            schema:
              type: array
              items:
                type: object
                additionalProperties: {}
          text/json:
            schema:
              type: array
              items:
                type: object
                additionalProperties: {}
          application/*+json:
            schema:
              type: array
              items:
                type: object
                additionalProperties: {}
      responses:
        '200':
          description: OK
      deprecated: true
    post:
      tags:
      - Rebate Programs
      summary: Create Rebate Programs
      description: Creates multiple rebate programs
      requestBody:
        description: The list of rebate programs to create
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/IncentiveProgram'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/IncentiveProgram'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/IncentiveProgram'
      responses:
        '200':
          description: OK
      deprecated: true
  /programs/{Id}:
    delete:
      tags:
      - Rebate Programs
      summary: Delete a Rebate Program
      description: Deletes a single rebate program by its identifier.
      parameters:
      - name: Id
        in: path
        description: The identifier of the rebate program to delete
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      deprecated: true
    get:
      tags:
      - Rebate Programs
      summary: Retrieve a Rebate Program
      description: Retrieves a single rebate program by its identifier.
      parameters:
      - name: Id
        in: path
        description: The identifier of the rebate program
        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
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/IncentiveProgram'
            application/json:
              schema:
                $ref: '#/components/schemas/IncentiveProgram'
            text/json:
              schema:
                $ref: '#/components/schemas/IncentiveProgram'
        '204':
          description: No Content
      deprecated: true
    patch:
      tags:
      - Rebate Programs
      summary: Update a Rebate Program
      description: Updates a single rebate program
      parameters:
      - name: Id
        in: path
        description: The identifier of the rebate program to update
        required: true
        schema:
          type: string
      requestBody:
        description: The updated data of the rebate program
        content:
          application/json:
            schema:
              type: object
              additionalProperties: {}
          text/json:
            schema:
              type: object
              additionalProperties: {}
          application/*+json:
            schema:
              type: object
              additionalProperties: {}
      responses:
        '200':
          description: OK
      deprecated: true
components:
  schemas:
    IncentiveProgram:
      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'
        Description:
          type:
          - string
          - 'null'
        IsActive:
          type:
          - boolean
          - 'null'
        ApplicationMethod:
          type:
          - string
          - 'null'
        ProgramType:
          type:
          - string
          - 'null'
        Sequence:
          type:
          - integer
          - 'null'
          format: int32
      additionalProperties: {}
    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