Solvimon coupons API

The coupons API from Solvimon — 7 operation(s) for coupons.

Operations 9

GET /v{version}/coupons Get a list of coupons #
POST /v{version}/coupons Create a coupon #
GET /v{version}/coupons/{resourceIdOrReference} Get a coupon #
PATCH /v{version}/coupons/{resourceIdOrReference} Update a coupon #
GET /v{version}/coupons/{resourceIdOrReference}/redemptions Get a list of coupon redemptions #
POST /v{version}/coupons/{resourceIdOrReference}/activate Activate a coupon #
POST /v{version}/coupons/{resourceIdOrReference}/deactivate Deactivate a coupon #
POST /v{version}/coupons/{resourceIdOrReference}/deprecate Deprecate a coupon #
POST /v{version}/coupons/{resourceIdOrReference}/archive Archive a coupon #

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/solvimon-coupons-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

solvimon-coupons-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Configuration alertRules Coupons API
  version: 1.0.0
servers:
- url: https://test.api.solvimon.com
  description: The TEST environment for our API
- url: https://api.solvimon.com
  description: The live environment for our API
tags:
- name: coupons
paths:
  /v{version}/coupons:
    get:
      operationId: getCoupons
      summary: Get a list of coupons
      description: Requires the COUPON.VIEW permission.
      tags:
      - coupons
      parameters:
      - name: version
        in: path
        description: version
        required: true
        schema:
          type: string
          default: '1'
      - name: statuses[]
        in: query
        description: Filter by coupon status.
        required: false
        schema:
          type: array
          items:
            type: string
      - name: expand[]
        in: query
        description: The id fields of the resources that are going to be expanded.
        required: false
        schema:
          type: array
          items:
            type: string
      - name: limit
        in: query
        description: The amount of records shown in the list.
        required: false
        schema:
          type: integer
      - name: page
        in: query
        description: The page which is going to be shown.
        required: false
        schema:
          type: integer
      - name: order_by
        in: query
        description: The parameter by which the response is ordered.
        required: false
        schema:
          type: string
      - name: order_direction
        in: query
        description: The order direction by which the response is ordered.
        required: false
        schema:
          type: string
      - name: X-API-KEY
        in: header
        required: true
        schema:
          type: string
      - name: x-platform-id
        in: header
        description: Platform ID.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CouponResponseWrapper'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
    post:
      operationId: postCoupons
      summary: Create a coupon
      description: Requires the COUPON.CREATE permission.
      tags:
      - coupons
      parameters:
      - name: version
        in: path
        description: version
        required: true
        schema:
          type: string
          default: '1'
      - name: X-API-KEY
        in: header
        required: true
        schema:
          type: string
      - name: x-platform-id
        in: header
        description: Platform ID.
        required: false
        schema:
          type: string
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Coupon'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CouponCreateRequest'
  /v{version}/coupons/{resourceIdOrReference}:
    get:
      operationId: getCouponsByResourceIdOrReference
      summary: Get a coupon
      description: Requires the COUPON.VIEW permission.
      tags:
      - coupons
      parameters:
      - name: version
        in: path
        description: version
        required: true
        schema:
          type: string
          default: '1'
      - name: resourceIdOrReference
        in: path
        description: The ID or reference of the resource.
        required: true
        schema:
          type: string
          default: ''
      - name: expand[]
        in: query
        description: The id fields of the resources that are going to be expanded.
        required: false
        schema:
          type: array
          items:
            type: string
      - name: X-API-KEY
        in: header
        required: true
        schema:
          type: string
      - name: x-platform-id
        in: header
        description: Platform ID.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Coupon'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
    patch:
      operationId: patchCouponsByResourceIdOrReference
      summary: Update a coupon
      description: Requires the COUPON.UPDATE permission.
      tags:
      - coupons
      parameters:
      - name: version
        in: path
        description: version
        required: true
        schema:
          type: string
          default: '1'
      - name: resourceIdOrReference
        in: path
        description: The ID or reference of the resource.
        required: true
        schema:
          type: string
          default: ''
      - name: X-API-KEY
        in: header
        required: true
        schema:
          type: string
      - name: x-platform-id
        in: header
        description: Platform ID.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Coupon'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CouponUpdateRequest'
  /v{version}/coupons/{resourceIdOrReference}/redemptions:
    get:
      operationId: getCouponsByResourceIdOrReferenceRedemptions
      summary: Get a list of coupon redemptions
      description: Requires the COUPON.VIEW permission.
      tags:
      - coupons
      parameters:
      - name: version
        in: path
        description: version
        required: true
        schema:
          type: string
          default: '1'
      - name: resourceIdOrReference
        in: path
        description: The ID of the resource to be requested.
        required: true
        schema:
          type: string
          default: ''
      - name: customer_id
        in: query
        description: Filter by customer id.
        required: false
        schema:
          type: string
      - name: pricing_plan_subscription_id
        in: query
        description: Filter by pricing plan subscription id.
        required: false
        schema:
          type: string
      - name: limit
        in: query
        description: The amount of records shown in the list.
        required: false
        schema:
          type: integer
      - name: page
        in: query
        description: The page which is going to be shown.
        required: false
        schema:
          type: integer
      - name: order_by
        in: query
        description: The parameter by which the response is ordered.
        required: false
        schema:
          type: string
      - name: order_direction
        in: query
        description: The order direction by which the response is ordered.
        required: false
        schema:
          type: string
      - name: expand[]
        in: query
        description: The id fields of the resources that are going to be expanded.
        required: false
        schema:
          type: array
          items:
            type: string
      - name: X-API-KEY
        in: header
        required: true
        schema:
          type: string
      - name: x-platform-id
        in: header
        description: Platform ID.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CouponRedemptionResponseWrapper'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /v{version}/coupons/{resourceIdOrReference}/activate:
    post:
      operationId: postCouponsByResourceIdOrReferenceActivate
      summary: Activate a coupon
      description: Requires the COUPON.UPDATE permission.
      tags:
      - coupons
      parameters:
      - name: version
        in: path
        description: version
        required: true
        schema:
          type: string
          default: '1'
      - name: resourceIdOrReference
        in: path
        description: The ID or reference of the resource.
        required: true
        schema:
          type: string
          default: ''
      - name: X-API-KEY
        in: header
        required: true
        schema:
          type: string
      - name: x-platform-id
        in: header
        description: Platform ID.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Coupon'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /v{version}/coupons/{resourceIdOrReference}/deactivate:
    post:
      operationId: postCouponsByResourceIdOrReferenceDeactivate
      summary: Deactivate a coupon
      description: Requires the COUPON.UPDATE permission.
      tags:
      - coupons
      parameters:
      - name: version
        in: path
        description: version
        required: true
        schema:
          type: string
          default: '1'
      - name: resourceIdOrReference
        in: path
        description: The ID or reference of the resource.
        required: true
        schema:
          type: string
          default: ''
      - name: X-API-KEY
        in: header
        required: true
        schema:
          type: string
      - name: x-platform-id
        in: header
        description: Platform ID.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Coupon'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /v{version}/coupons/{resourceIdOrReference}/deprecate:
    post:
      operationId: postCouponsByResourceIdOrReferenceDeprecate
      summary: Deprecate a coupon
      description: Requires the COUPON.UPDATE permission.
      tags:
      - coupons
      parameters:
      - name: version
        in: path
        description: version
        required: true
        schema:
          type: string
          default: '1'
      - name: resourceIdOrReference
        in: path
        description: The ID or reference of the resource.
        required: true
        schema:
          type: string
          default: ''
      - name: X-API-KEY
        in: header
        required: true
        schema:
          type: string
      - name: x-platform-id
        in: header
        description: Platform ID.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Coupon'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /v{version}/coupons/{resourceIdOrReference}/archive:
    post:
      operationId: postCouponsByResourceIdOrReferenceArchive
      summary: Archive a coupon
      description: Requires the COUPON.UPDATE permission.
      tags:
      - coupons
      parameters:
      - name: version
        in: path
        description: version
        required: true
        schema:
          type: string
          default: '1'
      - name: resourceIdOrReference
        in: path
        description: The ID or reference of the resource.
        required: true
        schema:
          type: string
          default: ''
      - name: X-API-KEY
        in: header
        required: true
        schema:
          type: string
      - name: x-platform-id
        in: header
        description: Platform ID.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Coupon'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
components:
  schemas:
    CouponUpdateRequest:
      type: object
      properties:
        object_type:
          type:
          - string
          - 'null'
        id:
          type:
          - string
          - 'null'
        name:
          type: string
        reference:
          type: string
        description:
          type:
          - string
          - 'null'
        status:
          oneOf:
          - $ref: '#/components/schemas/CouponUpdateRequestStatus'
          - type: 'null'
        discount:
          $ref: '#/components/schemas/CouponDiscountUpdateRequest'
        duration:
          $ref: '#/components/schemas/CouponDurationUpdateRequest'
        limited_to:
          $ref: '#/components/schemas/CouponLimitedToUpdateRequest'
        start_at:
          type:
          - string
          - 'null'
        end_at:
          type:
          - string
          - 'null'
        maximum_redemptions:
          type:
          - integer
          - 'null'
        number_of_redemptions:
          type:
          - integer
          - 'null'
        created_at:
          type:
          - string
          - 'null'
        updated_at:
          type:
          - string
          - 'null'
      title: CouponUpdateRequest
    EInvoicingIntegrationProcessor:
      type: string
      enum:
      - AVALARA
      title: EInvoicingIntegrationProcessor
    TotalDiscount:
      type: object
      properties:
        start_at:
          type:
          - string
          - 'null'
        end_at:
          type:
          - string
          - 'null'
        amount:
          $ref: '#/components/schemas/Amount'
        percentage:
          type:
          - string
          - 'null'
        coupon_id:
          type:
          - string
          - 'null'
          description: Resource ID of type COUPON
        promotion_code_details:
          oneOf:
          - $ref: '#/components/schemas/PromotionCodeDetails'
          - type: 'null'
        condition:
          $ref: '#/components/schemas/DiscountCondition'
      title: TotalDiscount
    CustomerRolesItems:
      type: string
      enum:
      - DEFAULT
      - NON_PROCESSING
      - SELF_BILLING
      - SELLER
      - PROCESSING_ONLY
      title: CustomerRolesItems
    Individual:
      type: object
      properties:
        name:
          $ref: '#/components/schemas/Name'
        residential_address:
          $ref: '#/components/schemas/Address'
      title: Individual
    PaymentGatewayPaymentAcceptor:
      type: object
      properties:
        integration_id:
          type: string
          description: Resource ID of type INTEGRATION
        integration:
          oneOf:
          - $ref: '#/components/schemas/Integration'
          - type: 'null'
        store_payment_method:
          type:
          - boolean
          - 'null'
        auto_charge_payment_method:
          type:
          - boolean
          - 'null'
        collection_type:
          $ref: '#/components/schemas/PaymentGatewayPaymentAcceptorCollectionType'
        link:
          $ref: '#/components/schemas/PaymentGatewayPaymentAcceptorLink'
        adyen:
          $ref: '#/components/schemas/PaymentGatewayPaymentAcceptorAdyen'
      title: PaymentGatewayPaymentAcceptor
    TemplatePricingPlanSubscription:
      type: object
      properties:
        apply_billing_entity_selector:
          type:
          - boolean
          - 'null'
        allow_promotion_codes:
          oneOf:
          - $ref: '#/components/schemas/TemplatePricingPlanSubscriptionAllowPromotionCodes'
          - type: 'null'
      title: TemplatePricingPlanSubscription
    PricingPlanSubscriptionGroup:
      type: object
      properties:
        object_type:
          type:
          - string
          - 'null'
        id:
          type:
          - string
          - 'null'
        reference:
          type: string
          description: Unique reference for this subscription group
        name:
          type:
          - string
          - 'null'
          description: Optional name for this subscription group
        description:
          type:
          - string
          - 'null'
          description: Optional description for this subscription group
        owner_customer_id:
          type:
          - string
          - 'null'
          description: When provided, this subscription group can only be used for the customer that is linked to this ID and children of that customer
        owner_customer:
          oneOf:
          - $ref: '#/components/schemas/Customer'
          - type: 'null'
        pricing_plan_subscription_ids:
          type:
          - array
          - 'null'
          items:
            type: string
      title: PricingPlanSubscriptionGroup
    ProductItemDiscount:
      type: object
      properties:
        ids:
          type: array
          items:
            type: string
          description: Resource ID of type PRODUCT_ITEM
        start_at:
          type:
          - string
          - 'null'
        end_at:
          type:
          - string
          - 'null'
        amount:
          $ref: '#/components/schemas/Amount'
        percentage:
          type:
          - string
          - 'null'
        coupon_id:
          type:
          - string
          - 'null'
          description: Resource ID of type COUPON
        promotion_code_details:
          oneOf:
          - $ref: '#/components/schemas/PromotionCodeDetails'
          - type: 'null'
        condition:
          $ref: '#/components/schemas/DiscountCondition'
      title: ProductItemDiscount
    ApiError:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/ApiErrorType'
        code:
          $ref: '#/components/schemas/ApiErrorCode'
        field:
          type:
          - string
          - 'null'
        message:
          type: string
        resource_id:
          type:
          - string
          - 'null'
        resource_type:
          oneOf:
          - $ref: '#/components/schemas/ApiErrorResourceType'
          - type: 'null'
      required:
      - type
      - code
      - message
      title: ApiError
    WalletTypeStatus:
      type: string
      enum:
      - DRAFT
      - ACTIVE
      - INACTIVE
      - DEPRECATED
      - ARCHIVED
      title: WalletTypeStatus
    PricingDiscount:
      type: object
      properties:
        ids:
          type: array
          items:
            type: string
          description: Resource ID of type PRICING
        start_at:
          type:
          - string
          - 'null'
          format: date-time
        end_at:
          type:
          - string
          - 'null'
          format: date-time
        amount:
          $ref: '#/components/schemas/Amount'
        percentage:
          type:
          - string
          - 'null'
        condition:
          $ref: '#/components/schemas/DiscountCondition'
      title: PricingDiscount
    PricingItemConfig:
      type: object
      properties:
        object_type:
          type:
          - string
          - 'null'
        id:
          type:
          - string
          - 'null'
          description: Resource ID of type PRICING_ITEM_CONFIG
        original_pricing_item_config_id:
          type:
          - string
          - 'null'
        original_pricing_item_config:
          oneOf:
          - $ref: '#/components/schemas/PricingItemConfigOriginalPricingItemConfig'
          - type: 'null'
          description: This property creates a circular reference in the `PricingItemConfig` schema. If you experience any issues with OpenAPI tools related to these circular references, you can try removing this property from the specification.
        details:
          $ref: '#/components/schemas/PricingItemConfigDetails'
        billing_period:
          $ref: '#/components/schemas/Period'
        type:
          oneOf:
          - $ref: '#/components/schemas/PricingItemConfigType'
          - type: 'null'
        pricing_type:
          oneOf:
          - $ref: '#/components/schemas/PricingItemConfigPricingType'
          - type: 'null'
        pricing_period:
          $ref: '#/components/schemas/Period'
        default_included_volume:
          $ref: '#/components/schemas/PricingItemConfigMeterValueIncludedVolume'
        default_seats_value:
          $ref: '#/components/schemas/PricingItemConfigMeterValue'
        conditions:
          $ref: '#/components/schemas/PricingItemConfigConditions'
        tiering_conditions:
          $ref: '#/components/schemas/MeterConditions'
          description: Conditions that filter for which `TIERING` events this pricing item config is applied. Only the `expression` is supported here; the deprecated `meter_properties` field is not allowed.
        bands:
          type: array
          items:
            $ref: '#/components/schemas/PricingItemConfigBand'
        order:
          type:
          - integer
          - 'null'
        billing_in_advance:
          type:
          - boolean
          - 'null'
        volume_group_reference:
          type:
          - string
          - 'null'
        top_up:
          $ref: '#/components/schemas/PricingItemConfigTopUp'
        split_pricing:
          $ref: '#/components/schemas/PricingItemConfigSplitPricing'
        on_demand:
          type:
          - boolean
          - 'null'
        wallet_grants:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PricingItemConfigWalletGrant'
      title: PricingItemConfig
    CouponDurationUpdateRequest:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/CouponDurationUpdateRequestType'
        period:
          $ref: '#/components/schemas/Period'
      title: CouponDurationUpdateRequest
    WalletTypeCredit:
      type: object
      properties:
        grant_type:
          $ref: '#/components/schemas/WalletTypeCreditGrantType'
        amount_grant:
          $ref: '#/components/schemas/WalletTypeCreditAmountGrant'
        credits_grant:
          $ref: '#/components/schemas/WalletTypeCreditCreditsGrant'
      title: WalletTypeCredit
    PricingItemDiscount:
      type: object
      properties:
        ids:
          type: array
          items:
            type: string
          description: Resource ID of type PRICING_ITEM
        start_at:
          type:
          - string
          - 'null'
          format: date-time
        end_at:
          type:
          - string
          - 'null'
          format: date-time
        amount:
          $ref: '#/components/schemas/Amount'
        percentage:
          type:
          - string
          - 'null'
        condition:
          $ref: '#/components/schemas/DiscountCondition'
      title: PricingItemDiscount
    CouponDiscountType:
      type: string
      enum:
      - PERCENTAGE
      - AMOUNT
      - USAGE
      title: CouponDiscountType
    AdyenPaymentGatewayIntegrationEnvironment:
      type: string
      enum:
      - LIVE
      - TEST
      title: AdyenPaymentGatewayIntegrationEnvironment
    Pricing:
      type: object
      properties:
        object_type:
          type:
          - string
          - 'null'
        id:
          type:
          - string
          - 'null'
        pricing_plan_version_id:
          type:
          - string
          - 'null'
          description: Resource ID of type PRICING_PLAN_VERSION
        pricing_plan_schedule_id:
          type:
          - string
          - 'null'
          description: Resource ID of type PRICING_PLAN_SCHEDULE
        pricing_group_id:
          type:
          - string
          - 'null'
          description: Resource ID of type PRICING_GROUP
        original_pricing_id:
          type:
          - string
          - 'null'
        original_pricing:
          oneOf:
          - $ref: '#/components/schemas/PricingOriginalPricing'
          - type: 'null'
          description: This property creates a circular reference in the `Pricing` schema. If you experience any issues with OpenAPI tools related to these circular references, you can try removing this property from the specification.
        override:
          oneOf:
          - $ref: '#/components/schemas/PricingOverride'
          - type: 'null'
        name:
          type:
          - string
          - 'null'
        product_type:
          oneOf:
          - $ref: '#/components/schemas/PricingProductType'
          - type: 'null'
        product_ids:
          type: array
          items:
            type: string
        display_order:
          type:
          - integer
          - 'null'
        products:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Product'
        entitlements:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Entitlement'
        items:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PricingItem'
      title: Pricing
    NotificationPreference:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/NotificationPreferenceType'
          description: The notification type to configure.
        channels:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/NotificationChannel'
          description: The channels for this notification type.
      title: NotificationPreference
    PricingPlanVersionStatus:
      type: string
      enum:
      - DRAFT
      - ACTIVE
      - ARCHIVED
      - DEPRECATED
      title: PricingPlanVersionStatus
    DiscountConditionComparator:
      type: string
      enum:
      - EQUALS
      - NOT_EQUALS
      - IN
      - NOT_IN
      - GREATER_THAN
      - GREATER_THAN_OR_EQUALS
      - LESS_THAN
      - LESS_THAN_OR_EQUALS
      - EMPTY
      - NOT_EMPTY
      - CONTAINS
      - NOT_CONTAINS
      title: DiscountConditionComparator
    CustomerType:
      type: string
      enum:
      - ORGANIZATION
      - INDIVIDUAL
      description: The type of customer entity.
  

# --- truncated at 32 KB (179 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/solvimon/refs/heads/main/openapi/solvimon-coupons-api-openapi.yml