Conga Initiate Billing API

Controller to handle Billing Schedule related operations

Business capability
Subscription Billing & Revenue Management BC-4250

Operations 13

POST /schedules/adjustments/apply-adjustment Apply adjustments to the billing schedule
PUT /schedules/adjustments/update-approval-stage Update the approval stage of a billing schedule detail
POST /schedules/amend Amend Schedules
DELETE /schedules/delete-adjustments Delete adjustment billing schedule details
POST /schedules/evergreen/renew Evergreen Renew
POST /schedules/evergreen/{scheduleId}/renew Evergreen Renew
POST /schedules/initiate Create billing records based on Order Line Item (OLI) status
POST /schedules/new Create billing schedules for new sale order line items.
POST /schedules/renew Renew Schedules
POST /schedules/swap Swap Schedules
POST /schedules/terminate Terminate Schedules
GET /schedules/{billingHeaderId} Get Billing Schedules by billing header id
POST /schedules/{orderId}/initiate Initiate billing for all order line items under a given order.

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-initiate-billing-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-initiate-billing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Billing Management Initiate Billing API
  version: 1.0.0
  description: Controller to handle Billing Schedule related operations
servers:
- url: https://rls.congacloud.com/api/billing/v1
security:
- Bearer: []
tags:
- name: Initiate Billing
  description: Controller to handle Billing Schedule related operations
paths:
  /schedules/adjustments/apply-adjustment:
    post:
      tags:
      - Initiate Billing
      summary: Apply adjustments to the billing schedule
      description: Applies adjustment to billing schedule.
      requestBody:
        description: Billing Schedule Record Id with Adjustment Details
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/BillingScheduleAdjustmentRequest'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/BillingScheduleAdjustmentRequest'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/BillingScheduleAdjustmentRequest'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BillingScheduleAdjustmentResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BillingScheduleAdjustmentResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BillingScheduleAdjustmentResponse'
        '207':
          description: Multi-Status
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BillingScheduleAdjustmentResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BillingScheduleAdjustmentResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BillingScheduleAdjustmentResponse'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BillingScheduleAdjustmentResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BillingScheduleAdjustmentResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BillingScheduleAdjustmentResponse'
        '500':
          description: Internal Server Error
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
  /schedules/adjustments/update-approval-stage:
    put:
      tags:
      - Initiate Billing
      summary: Update the approval stage of a billing schedule detail
      description: The API updates the approval stage of billing schedule detail when provided with BillingScheduleDetailId and approval stage.
      requestBody:
        description: BillingScheduleDetailId and the new approval stage
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/AdjustmentBSDRequest'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/AdjustmentBSDRequest'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/AdjustmentBSDRequest'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
        '207':
          description: Multi-Status
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
        '500':
          description: Internal Server Error
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
  /schedules/amend:
    post:
      tags:
      - Initiate Billing
      summary: Amend Schedules
      description: Amend billing for one-time and recurring products. It creates/updates billing records when you pass orderLineItemIds and ReadyForBillingDate as parameters.
      requestBody:
        description: Amend Billing request
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '207':
          description: Multi-Status
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '500':
          description: Internal Server Error
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
  /schedules/delete-adjustments:
    delete:
      tags:
      - Initiate Billing
      summary: Delete adjustment billing schedule details
      description: The API deletes Adjustment billing schedule details based on the provided BillingScheduleDetailIds.
      requestBody:
        description: List of Billing Schedule Detail IDs to be deleted.
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
          text/json:
            schema:
              type: array
              items:
                type: string
          application/*+json:
            schema:
              type: array
              items:
                type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
        '207':
          description: Multi-Status
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdjustmentBSDResponse'
        '500':
          description: Internal Server Error
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
  /schedules/evergreen/renew:
    post:
      tags:
      - Initiate Billing
      summary: Evergreen Renew
      description: Renew Evergreen Billing Header by passing Billing Header ID.
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/RenewEvergreenBillingRequests'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/RenewEvergreenBillingRequests'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/RenewEvergreenBillingRequests'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RenewEvergreenBillingResponse'
        '207':
          description: Multi-Status
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RenewEvergreenBillingResponse'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RenewEvergreenBillingResponse'
        '500':
          description: Internal Server Error
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
  /schedules/evergreen/{scheduleId}/renew:
    post:
      tags:
      - Initiate Billing
      summary: Evergreen Renew
      description: Renew Evergreen Billing Header by passing Billing Header Id
      parameters:
      - name: scheduleId
        in: path
        description: Schedule Id
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/RenewEvergreenBillingResponse'
        '207':
          description: Multi-Status
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/RenewEvergreenBillingResponse'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/RenewEvergreenBillingResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/RenewEvergreenBillingResponse'
        '500':
          description: Internal Server Error
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
  /schedules/initiate:
    post:
      tags:
      - Initiate Billing
      summary: Create billing records based on Order Line Item (OLI) status
      description: "Initiates billing for different types of products based on the status of the Order Line Items (OLIs). \nThe API processes multiple OLIs with different statuses (New, Amend, Renew, Terminate, etc.) and groups them \naccordingly. It then triggers the appropriate billing actions for each group based on the status of each OLI.\nThe grouping and billing actions are automatically handled based on the status, making it easier for the user to \ninitiate billing for various types of changes in the order.\n  * **New Products:** Billing will be initiated as a new sale.\n  * **Amendments:** Billing will be triggered based on the amended order line item details.\n  * **Renewals:** Billing will be initiated for recurring products based on renewal details.\n  * **Terminations:** Billing will be handled based on the termination of the product.\n  * **Swap Products:** Billing will be initiated based on the swapped product details."
      parameters:
      - name: isAsync
        in: query
        description: Flag to indicate if the operation should be asynchronous
        schema:
          type: boolean
      requestBody:
        description: Initiate Billing request, including multiple OLIs with varying statuses
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '207':
          description: Multi-Status
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
  /schedules/new:
    post:
      tags:
      - Initiate Billing
      summary: Create billing schedules for new sale order line items.
      description: "Creates billing schedule records for the specified order line items using the provided `ReadyForBillingDate`.\nThe type and number of billing records created depends on each order line item's price type and billing frequency:\n            \n  * **One-Time Products** – If both the price type and billing frequency are set to One-Time, a single billing schedule record is created.\n  * **Recurring Products** – If the price type is Recurring and the billing frequency is Monthly, Quarterly, or Yearly, a cascade of billing schedule records is created based on the selling term.\n            \n**Processing behavior:**\n  * Duplicate order line item IDs in the request are automatically de-duplicated.\n  * If any order line item IDs are not found, those entries are returned with an error in the response while valid ones are still processed.\n  * Order line items that already have an existing billing header are excluded from processing.\n            \nIf the request contains a mix of valid and invalid inputs, valid ones are processed and invalid ones are returned with error details (HTTP 207)."
      requestBody:
        description: The billing request containing a list of `OrderLineItemIds` and a `ReadyForBillingDate` to initiate new sale billing.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
      responses:
        '201':
          description: All billing schedules were created successfully.
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '207':
          description: Partial success – some order line items were processed, others failed validation.
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '400':
          description: Invalid request – request is null, order line item IDs are missing, or `ReadyForBillingDate` is not provided.
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '500':
          description: An unexpected server error occurred during processing.
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
  /schedules/renew:
    post:
      tags:
      - Initiate Billing
      summary: Renew Schedules
      description: The API will Renew Schedules for a Given Order Line item IDs.
      requestBody:
        description: Order Line Item Ids
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
          text/json:
            schema:
              type: array
              items:
                type: string
          application/*+json:
            schema:
              type: array
              items:
                type: string
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '207':
          description: Multi-Status
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '500':
          description: Internal Server Error
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
  /schedules/swap:
    post:
      tags:
      - Initiate Billing
      summary: Swap Schedules
      description: The API will swap sold and earlier billed product when you pass OrderLineItemIds and ReadyForBillingDate as parameters.
      requestBody:
        description: Swap Billing request
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/BillingRequest'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '207':
          description: Multi-Status
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '500':
          description: Internal Server Error
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
  /schedules/terminate:
    post:
      tags:
      - Initiate Billing
      summary: Terminate Schedules
      description: The API will Terminate Schedules for a Given Order Line item IDs.
      requestBody:
        description: Order Line Item Ids
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
          text/json:
            schema:
              type: array
              items:
                type: string
          application/*+json:
            schema:
              type: array
              items:
                type: string
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '207':
          description: Multi-Status
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleResponse'
        '500':
          description: Internal Server Error
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ErrorAp

# --- truncated at 32 KB (50 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/conga/refs/heads/main/openapi/conga-initiate-billing-api-openapi.yml