Solvimon pricings API

The pricings API from Solvimon — 2 operation(s) for pricings.

Operations 3

POST /v{version}/pricings Create a pricing #
DELETE /v{version}/pricings/{resourceId} Delete a pricing by resource ID #
PATCH /v{version}/pricings/{resourceId} Update a pricing #

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-pricings-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-pricings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Configuration alertRules Pricings 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: pricings
paths:
  /v{version}/pricings:
    post:
      operationId: postPricings
      summary: Create a pricing
      tags:
      - pricings
      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/Pricing'
        '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/PricingCreateRequest'
  /v{version}/pricings/{resourceId}:
    delete:
      operationId: deletePricingsByResourceId
      summary: Delete a pricing by resource ID
      tags:
      - pricings
      parameters:
      - name: version
        in: path
        description: version
        required: true
        schema:
          type: string
          default: '1'
      - name: resourceId
        in: path
        description: The ID of the resource to be requested.
        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/Pricing'
        '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: patchPricingsByResourceId
      summary: Update a pricing
      tags:
      - pricings
      parameters:
      - name: version
        in: path
        description: version
        required: true
        schema:
          type: string
          default: '1'
      - name: resourceId
        in: path
        description: The ID of the resource to be requested.
        required: true
        schema:
          type: string
          default: ''
      - name: field_actions
        in: query
        description: The list of actions for specific fields.
        required: false
        schema:
          type: object
          additionalProperties:
            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/Pricing'
        '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/PricingUpdateRequest'
components:
  schemas:
    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
    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
    WalletTypeCredit:
      type: object
      properties:
        grant_type:
          $ref: '#/components/schemas/WalletTypeCreditGrantType'
        amount_grant:
          $ref: '#/components/schemas/WalletTypeCreditAmountGrant'
        credits_grant:
          $ref: '#/components/schemas/WalletTypeCreditCreditsGrant'
      title: WalletTypeCredit
    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
    PricingUpdateRequestOriginalPricing:
      type: object
      properties: {}
      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.
      title: PricingUpdateRequestOriginalPricing
    PricingItemPricingCurrencyConfigFallbackCurrency:
      type: string
      enum:
      - AED
      - AFN
      - ALL
      - AMD
      - ANG
      - AOA
      - ARS
      - AUD
      - AWG
      - AZN
      - BAM
      - BBD
      - BDT
      - BGN
      - BHD
      - BIF
      - BMD
      - BND
      - BOB
      - BRL
      - BSD
      - BTN
      - BWP
      - BYN
      - BZD
      - CAD
      - CDF
      - CHF
      - CLF
      - CLP
      - CNY
      - COP
      - CRC
      - CUC
      - CUP
      - CVE
      - CZK
      - DJF
      - DKK
      - DOP
      - DZD
      - EGP
      - ERN
      - ETB
      - EUR
      - FJD
      - FKP
      - GBP
      - GEL
      - GHS
      - GIP
      - GMD
      - GNF
      - GTQ
      - GYD
      - HKD
      - HNL
      - HRK
      - HTG
      - HUF
      - IDR
      - ILS
      - INR
      - IQD
      - IRR
      - ISK
      - JMD
      - JOD
      - JPY
      - KES
      - KGS
      - KHR
      - KMF
      - KPW
      - KRW
      - KWD
      - KYD
      - KZT
      - LAK
      - LBP
      - LKR
      - LRD
      - LSL
      - LYD
      - MAD
      - MDL
      - MGA
      - MKD
      - MMK
      - MNT
      - MOP
      - MRO
      - MRU
      - MUR
      - MVR
      - MWK
      - MXN
      - MXV
      - MYR
      - MZN
      - NAD
      - NGN
      - NIO
      - NOK
      - NPR
      - NZD
      - OMR
      - PAB
      - PEN
      - PGK
      - PHP
      - PKR
      - PLN
      - PYG
      - QAR
      - RON
      - RSD
      - RUB
      - RWF
      - SAR
      - SBD
      - SCR
      - SDG
      - SEK
      - SGD
      - SHP
      - SLE
      - SOS
      - SRD
      - SSP
      - STN
      - SVC
      - SYP
      - SZL
      - THB
      - TJS
      - TMT
      - TND
      - TOP
      - TRY
      - TTD
      - TWD
      - TZS
      - UAH
      - UGX
      - USD
      - USN
      - UYI
      - UYU
      - UZS
      - VEF
      - VES
      - VND
      - VUV
      - WST
      - XAF
      - XAG
      - XAU
      - XBA
      - XBB
      - XBC
      - XBD
      - XCD
      - XDR
      - XOF
      - XPD
      - XPF
      - XPT
      - XSU
      - XTS
      - XUA
      - XXX
      - YER
      - ZAR
      - ZMW
      - ZWL
      title: PricingItemPricingCurrencyConfigFallbackCurrency
    CreditType:
      type: object
      properties:
        object_type:
          type:
          - string
          - 'null'
        id:
          type:
          - string
          - 'null'
        reference:
          type: string
        status:
          oneOf:
          - $ref: '#/components/schemas/CreditTypeStatus'
          - type: 'null'
        name:
          type: string
        description:
          type:
          - string
          - 'null'
        unit_name:
          $ref: '#/components/schemas/UnitName'
        created_at:
          type:
          - string
          - 'null'
        updated_at:
          type:
          - string
          - 'null'
      title: CreditType
    ProductItemCredits:
      type: object
      properties:
        credit_type_id:
          type:
          - string
          - 'null'
          description: The linked meter value calculation
        credit_type:
          oneOf:
          - $ref: '#/components/schemas/CreditType'
          - type: 'null'
      title: ProductItemCredits
    WalletTypeCreditAmountGrantDefaultCurrency:
      type: string
      enum:
      - AED
      - AFN
      - ALL
      - AMD
      - ANG
      - AOA
      - ARS
      - AUD
      - AWG
      - AZN
      - BAM
      - BBD
      - BDT
      - BGN
      - BHD
      - BIF
      - BMD
      - BND
      - BOB
      - BRL
      - BSD
      - BTN
      - BWP
      - BYN
      - BZD
      - CAD
      - CDF
      - CHF
      - CLF
      - CLP
      - CNY
      - COP
      - CRC
      - CUC
      - CUP
      - CVE
      - CZK
      - DJF
      - DKK
      - DOP
      - DZD
      - EGP
      - ERN
      - ETB
      - EUR
      - FJD
      - FKP
      - GBP
      - GEL
      - GHS
      - GIP
      - GMD
      - GNF
      - GTQ
      - GYD
      - HKD
      - HNL
      - HRK
      - HTG
      - HUF
      - IDR
      - ILS
      - INR
      - IQD
      - IRR
      - ISK
      - JMD
      - JOD
      - JPY
      - KES
      - KGS
      - KHR
      - KMF
      - KPW
      - KRW
      - KWD
      - KYD
      - KZT
      - LAK
      - LBP
      - LKR
      - LRD
      - LSL
      - LYD
      - MAD
      - MDL
      - MGA
      - MKD
      - MMK
      - MNT
      - MOP
      - MRO
      - MRU
      - MUR
      - MVR
      - MWK
      - MXN
      - MXV
      - MYR
      - MZN
      - NAD
      - NGN
      - NIO
      - NOK
      - NPR
      - NZD
      - OMR
      - PAB
      - PEN
      - PGK
      - PHP
      - PKR
      - PLN
      - PYG
      - QAR
      - RON
      - RSD
      - RUB
      - RWF
      - SAR
      - SBD
      - SCR
      - SDG
      - SEK
      - SGD
      - SHP
      - SLE
      - SOS
      - SRD
      - SSP
      - STN
      - SVC
      - SYP
      - SZL
      - THB
      - TJS
      - TMT
      - TND
      - TOP
      - TRY
      - TTD
      - TWD
      - TZS
      - UAH
      - UGX
      - USD
      - USN
      - UYI
      - UYU
      - UZS
      - VEF
      - VES
      - VND
      - VUV
      - WST
      - XAF
      - XAG
      - XAU
      - XBA
      - XBB
      - XBC
      - XBD
      - XCD
      - XDR
      - XOF
      - XPD
      - XPF
      - XPT
      - XSU
      - XTS
      - XUA
      - XXX
      - YER
      - ZAR
      - ZMW
      - ZWL
      description: The default currency for the wallet.
      title: WalletTypeCreditAmountGrantDefaultCurrency
    FeatureType:
      type: string
      enum:
      - SWITCH
      - NUMBER
      - ENUM
      - AMOUNT
      - STRING
      description: The indication of the type of feature associated with the pricing plan.
      title: FeatureType
    ProductUpdateRequestStatus:
      type: string
      enum:
      - DRAFT
      - ACTIVE
      - ARCHIVED
      - DEPRECATED
      description: The status of the product.
      title: ProductUpdateRequestStatus
    ProductCreateRequestProductType:
      type: string
      enum:
      - DEFAULT
      - ADDON
      title: ProductCreateRequestProductType
    PricingItemConfigType:
      type: string
      enum:
      - FLAT
      - FLAT_TOP_UP
      - TIERED
      - TIERED_TOP_UP
      - TOP_TIERED
      - STAIR_STEP
      - STAIR_STEP_TOP_UP
      - FIXED
      - PASS_THROUGH
      - NONE
      title: PricingItemConfigType
    ProductItemUsageBased:
      type: object
      properties:
        meter_value_calculation_id:
          type:
          - string
          - 'null'
          description: The linked meter value calculation
        meter_value_calculation:
          oneOf:
          - $ref: '#/components/schemas/MeterValueCalculation'
          - type: 'null'
        tiering_meter_value_calculation_id:
          type:
          - string
          - 'null'
          description: The optional alternative linked meter value calculation for tiering
        tiering_meter_value_calculation:
          oneOf:
          - $ref: '#/components/schemas/MeterValueCalculation'
          - type: 'null'
        report_meter_value_calculation_ids:
          type:
          - array
          - 'null'
          items:
            type: string
          description: Optional reporting meter value calculations.
        conditions:
          $ref: '#/components/schemas/MeterConditions'
          description: Optional conditions.
      title: ProductItemUsageBased
    Credits:
      type: object
      properties:
        quantity:
          type: string
        credit_type_id:
          type: string
          description: Resource ID of type CREDIT_TYPE
      title: Credits
    WalletTypeType:
      type: string
      enum:
      - CREDIT
      - BALANCE
      title: WalletTypeType
    PricingItemConfigWalletGrant:
      type: object
      properties:
        wallet_type_id:
          type: string
          description: Resource ID of type WALLET_TYPE
        wallet_type:
          oneOf:
          - $ref: '#/components/schemas/WalletType'
          - type: 'null'
        amount_grant:
          $ref: '#/components/schemas/PricingItemConfigWalletGrantAmountGrant'
        credits_grant:
          $ref: '#/components/schemas/PricingItemConfigWalletGrantCreditsGrant'
        expiry_policy:
          $ref: '#/components/schemas/PricingItemConfigWalletGrantExpiryPolicy'
      title: PricingItemConfigWalletGrant
    ProductCreateRequestTaxCategory:
      type: string
      enum:
      - STANDARD
      - NO_TAX
      - EXEMPT
      description: The default tax category applied to the product.
      title: ProductCreateRequestTaxCategory
    WalletTypeCreditAmountGrant:
      type: object
      properties:
        default_currency:
          $ref: '#/components/schemas/WalletTypeCreditAmountGrantDefaultCurrency'
          description: The default currency for the wallet.
        tax_category:
          $ref: '#/components/schemas/WalletTypeCreditAmountGrantTaxCategory'
          description: The tax category to for what the wallet can be applied to.
      title: WalletTypeCreditAmountGrant
    MeterValueStatus:
      type: string
      enum:
      - DRAFT
      - ACTIVE
      - ARCHIVED
      - DEPRECATED
      description: The status of the meter value indicating the activity and the ability to update properties.
      title: MeterValueStatus
    ApiErrorCode:
      type: string
      enum:
      - RESOURCE_NOT_FOUND
      - RESOURCES_NOT_FOUND
      - UNABLE_TO_PROCESS_INSTRUCTIONS
      - BAD_REQUEST
      - UNSUPPORTED_MEDIA_TYPE
      - RESOURCE_ALREADY_EXISTS
      - CUSTOM_FIELD_VALUE_ALREADY_EXISTS
      - COULD_NOT_CREATE_RESOURCE
      - COULD_NOT_UPDATE_RESOURCE
      - COULD_NOT_DELETE_RESOURCE
      - MISSING_VERSION
      - UNSUPPORTED_VERSION
      - UNAUTHORISED
      - CUSTOMER_NOT_FOUND
      - PLATFORM_NOT_FOUND
      - PRICING_PLAN_NOT_FOUND
      - PRODUCT_NOT_FOUND
      - PRODUCT_ITEM_NOT_FOUND
      - PRICING_NOT_FOUND
      - PRICING_ITEM_NOT_FOUND
      - USER_NOT_FOUND
      - METER_NOT_FOUND
      - METER_VALUE_NOT_FOUND
      - METER_PROPERTY_NOT_FOUND
      - PRICING_ITEM_SUMMARIES_NOT_FOUND
      - MISSING_ID
      - INVALID_ID
      - MISSING_REFERENCE
      - MISSING_FIELD
      - INVALID_FIELD
      - INVALID_OPERATION
      - INTERNAL_ERROR
      - USER_NOT_ALLOWED
      - IDEMPOTENCY_CHECK_FAILED
      - INVALID_REQUEST
      title: ApiErrorCode
    PricingItemConfigMeterValueIncludedVolume:
      type: object
      properties:
        number:
          type:
          - string
          - 'null'
        amount:
          $ref: '#/components/schemas/Amount'
        count:
          type:
          - string
          - 'null'
        reset_type:
          type:
          - string
          - 'null'
      title: PricingItemConfigMeterValueIncludedVolume
    ProductCreateRequestStatus:
      type: string
      enum:
      - DRAFT
      - ACTIVE
      - ARCHIVED
      - DEPRECATED
      description: The status of the product.
      title: ProductCreateRequestStatus
    PeriodType:
      type: string
      enum:
      - DAY
      - WEEK
      - MONTH
      - YEAR
      title: PeriodType
    MeterStatus:
      type: string
      enum:
      - DRAFT
      - ACTIVE
      - ARCHIVED
      - DEPRECATED
      description: The status of the meter indicating the activity of the meter and the ability to update properties.
      title: MeterStatus
    WalletType:
      type: object
      properties:
        object_type:
          type:
          - string
          - 'null'
        id:
          type:
          - string
          - 'null'
        name:
          type: string
        reference:
          type: string
        status:
          oneOf:
          - $ref: '#/components/schemas/WalletTypeStatus'
          - type: 'null'
        type:
          oneOf:
          - $ref: '#/components/schemas/WalletTypeType'
          - type: 'null'
        credit:
          $ref: '#/components/schemas/WalletTypeCredit'
        balance:
          $ref: '#/components/schemas/WalletTypeBalance'
        created_at:
          type:
          - string
          - 'null'
        updated_at:
          type:
          - string
          - 'null'
      title: WalletType
    AdyenIntegrationDetails:
      type: object
      properties:
        recurring_detail_reference:
          type: string
      title: AdyenIntegrationDetails
    ProductProductType:
      type: string
      enum:
      - DEFAULT
      - ADDON
      title: ProductProductType
    PricingItemOriginalPricingItem:
      type: object
      properties: {}
      description: This property creates a circular reference in the `PricingItem` schema. If you experience any issues with OpenAPI tools related to these circular references, you can try removing this property from the specification.
      title: PricingItemOriginalPricingItem
    ProductUpdateRequestProductType:
      type: string
      enum:
      - DEFAULT
      - ADDON
      title: ProductUpdateRequestProductType
    ApiErrorResourceType:
      type: string
      enum:
      - CUSTOMER
      - CUSTOM_FIELD
      - PLATFORM
      - PLATFORM_UPTODATE
      - METER
      - METER_VALUE
      - METER_PROPERTY
      - METER_VALUE_CALCULATION
      - INGEST_DATA
      - METER_DATA
      - CHARGE_DATA
      - PERSIST_DATA
      - ADJUSTMENT_DATA
      - PRODUCT_CATEGORY
      - PRODUCT
      - PRODUCT_ITEM
      - PRICING
      - PRICING_GROUP
      - PRICING_ITEM
      - PRICING_ITEM_CONFIG
      - PRICING_PLAN_SUBSCRIPTION
      - PRICING_PLAN_SUBSCRIPTION_GROUP
      - PRICING_PLAN_SCHEDULE
      - PRICING_PLAN
      - PRICING_PLAN_VERSION
      - QUOTE
      - QUOTE_VERSION
      - QUOTE_TEMPLATE
      - API_KEY
      - USER
      - ROLE
      - PROXY_USER
      - EXTERNAL_CREDENTIALS
      - TOKEN
      - INVOICE
      - E_INVOICE
      - PDF
      - BILLING_ENTITY
      - FEATURE
      - MEMBERSHIP
      - PAYMENT
      - PAYMENT_ACCEPTOR
      - PAYMENT_METHOD
      - PAYMENT_METHOD_OPTIONS
      - PAYMENT_SCHEDULE
      - PAYMENT_REQUEST
      - INTEGRATION
      - WEBHOOK
      - FILE
      - FILE_PROCESSING_SETTINGS
      - TEAM
      - DOWNLOAD_URL
      - CSV_REPORT
      - REPORT
      - REPORT_GENERATE_REQUEST
      - REPORT_CONFIGURATION
      - REPORT_SUBSCRIPTION
      - REPORT_DEFINITION
      - ACCOUNT_GROUP
      - ENTITY
      - EVENT_TRACE
      - EVENT_TRACE_LINK
      - PRICING_CATEGORY
      - CONTACT
      - ALERT_RULE
      - ALERT
      - AUDIT_RECORD
      - PORTAL_URL
      - AUTHENTICATION_PROVIDER
      - REPROCESS
      - APPROVAL_POLICY
      - APPROVAL_REQUEST
      - BULK_ACTION
      - COUPON
      - PROMOTION_CODE
      - WALLET
      - WALLET_TYPE
      - WALLET_GRANT
      - WORKFLOW
      - WORKFLOW_TRIGGER
      - WORKFLOW_ACTION
      - CREDIT_TYPE
      - SIGNATURE_REQUEST
      - ATTACHMENT
      - DOCUMENT
      title: ApiErrorResourceType
    MeterPropertyCondition:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: Resource ID of type METER_PROPERTY
        reference:
          type:
          - string
          - 'null'
        meter_property:
          oneOf:
          - $ref: '#/components/schemas/MeterProperty'
          - type: 'null'
        value:
          type:
          - string
          - 'null'
        values:
          type:
          - array
          - 'null'
          items:
            type: string
        comparator:
          $ref: '#/components/schemas/MeterPropertyConditionComparator'
      title: MeterPropertyCondition
    ProductItemTaxCategory:
      type: string
      enum:
      - STANDARD
      - NO_TAX
      - EXEMPT
      description: The default tax category applied to the product item.
      title: ProductItemTaxCategory
    MeterMeterValue:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: Resource ID of type METER_VALUE
        object:
          oneOf:
          - $ref: '#/components/schemas/MeterValue'
          - type: 'null'
        reference:
          type:
          - string
          - 'null'
        required:
          type:
          - boolean
          - 'null'
      title: MeterMeterValue
    PricingItemUpdateRequestOriginalPricingItem:
      type: object
      properties: {}
      description: This property creates a circular reference in the `PricingItem` schema. If you experience any issues with OpenAPI tools related to these circular references, you can try removing this property from the specification.
      title: PricingItemUpdateRequestOriginalPricingItem
    PricingItemConfigDetails:
      type: object
      properties:
        billing_period:
          $ref: '#/components/schemas/Period'
        pricing_type:
          oneOf:
          - $ref: '#/components/schemas/PricingItemConfigDetailsPricingType'
          - type: 'null'
        pricing_period:
          $ref: '#/components/schemas/Period'
        bands:
          type: array
          items:
            $ref: '#/components/schemas/PricingItemConfigBand'
      title: PricingItemConfigDetails
    ApiErrorType:
      type: string
      enum:
      - API_ERROR
      - INVALID_REQUEST
      title: ApiErrorType
    IntegrationDetails:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        reference:
          type:
          - string
          - 'null'
        payment_gateway_variant:
          $ref: '#/components/schemas/IntegrationDetailsPaymentGatewayVariant'
        adyen:
          $ref: '#/components/schemas/AdyenIntegrationDetails'
        stripe:
          $ref: '#/components/schemas/StripeIntegrationDetails'
      title: IntegrationDetails
    MeterMeterProperty:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: Resource ID of type METER_PROPERTY
        object:
          oneOf:
          - $ref: '#/components/schemas/MeterProperty'
          - type: 'null'
        reference:
          type:
          - string
          - 'null'
        required:
          type:
          - boolean
          - 'null'
      title: MeterMeterProperty
    Entitlement:
      type: object
      properties:
        feature_id:
          type:
          - string
          - 'null'
          description: Resource ID of type FEATURE
        feature:
          oneOf:
          - $ref: '#/components/schemas/Feature'
          - type: 'null'
        feature_reference:
          type:
          - string
          - 'null'
        override:
          type:
          - boolean
          - 'null'
        overwrite:
          type:
          - boolean
          - 'null'
        number:
          type:
          - string
          - 'null'
        switch:
          type:
          - boolean
          - 'null'
        amount:
          $ref: '#/components/schemas/Amount'
        enum:
          type:
          - string
          - 'null'
        string:
          type:
          - string
          - 'null'
      title: Entitlement
    PricingItemBillingPeriodConfig:
      type: object
      properties:
        billing_period:
          $ref: '#/components/schemas/Period'
        configs:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PricingItemConfig'
      title: PricingItemBillingPeriodConfig
    MeterConditionExpression:
      type: object
      properties:
        operator:
          $ref: '#/components/schemas/MeterConditionExpressionOperator'
        operands:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/MeterConditionOperand'
      title: MeterConditionExpression
    PricingOriginalPricing:
      type: object
      properties: {}
      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.
      title: PricingOriginalPricing
    Amount:
      type: object
      properties:
        quantity:
          type: string
        currency:
          $ref: '#/components/schemas/AmountCurrency'
      title: Amount
    PricingProductType:
      type: string
      enum:
      - DEFAULT
      - ADDON
      title: PricingProductType
    PricingItemUpdateRequest:
      type: object
      properties:
        object_type:
          type:
          - string
          - 'null'
        id:
          type:
          - string
          - 'null'
        original_pricing_item_id:
          type:
          - string
          - 'null'
        original_pricing_item:
          oneOf:
          - $ref: '#/components/schemas/PricingItemUpdateRequestOriginalP

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