Kaltura subscription API

The subscription API from Kaltura — 2 operation(s) for subscription.

Operations 2

POST /service/subscription/action/list #
POST /service/subscription/action/validateCoupon #

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/kaltura-subscription-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

kaltura-subscription-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: The Kaltura OTT API
  title: Kaltura OTT accessControl Subscription API
  version: 3.6.287.20720
servers:
- url: https://tvpapi-us-preprod.ott.kaltura.com/api_v3
- url: http://tvpapi-us-preprod.ott.kaltura.com/api_v3
security:
- ks: []
tags:
- name: subscription
paths:
  /service/subscription/action/list:
    post:
      description: Returns a list of subscriptions requested by Subscription ID or file ID
      operationId: subscription.list
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaSubscriptionListResponse'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaSubscriptionListResponse'
      tags:
      - subscription
      x-kaltura-format: post
      x-kaltura-parameters:
      - filter
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                filter:
                  $ref: '#/components/schemas/KalturaSubscriptionFilter'
              type: object
  /service/subscription/action/validateCoupon:
    post:
      description: Returns information about a coupon for subscription
      operationId: subscription.validateCoupon
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaCoupon'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaCoupon'
      tags:
      - subscription
      x-kaltura-format: post
      x-kaltura-parameters:
      - id
      - code
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                code:
                  type: string
                id:
                  type: integer
              type: object
components:
  schemas:
    KalturaPersonalFeedFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        orderBy:
          enum:
          - RELEVANCY_DESC
          - NAME_ASC
          - NAME_DESC
          - VIEWS_DESC
          - RATINGS_DESC
          - VOTES_DESC
          - START_DATE_DESC
          - START_DATE_ASC
          type: string
          x-enumLabels:
          - RELEVANCY_DESC
          - NAME_ASC
          - NAME_DESC
          - VIEWS_DESC
          - RATINGS_DESC
          - VOTES_DESC
          - START_DATE_DESC
          - START_DATE_ASC
          x-enumType: KalturaPersonalFeedOrderBy
      title: KalturaPersonalFeedFilter
      type: object
    KalturaCouponsGroup:
      description: Coupons group details
      properties:
        couponGroupType:
          description: 'Enum Type: `KalturaCouponGroupType`


            Type of the coupon group'
          enum:
          - COUPON
          - GIFT_CARD
          type: string
          x-enumLabels:
          - COUPON
          - GIFT_CARD
          x-enumType: KalturaCouponGroupType
        descriptions:
          items:
            $ref: '#/components/schemas/KalturaTranslationToken'
          type: array
        endDate:
          description: The last date the coupons in this coupons group are valid
          type: integer
        id:
          description: '`readOnly`


            Coupon group identifier'
          readOnly: true
          type: string
        maxUsesNumber:
          description: Maximum number of uses for each coupon in the group
          type: integer
        maxUsesNumberOnRenewableSub:
          description: Maximum number of uses for each coupon in the group on a renewable subscription
          type: integer
        name:
          description: Coupon group name
          type: string
        startDate:
          description: The first date the coupons in this coupons group are valid
          type: integer
      title: KalturaCouponsGroup
      type: object
    KalturaSeriesRecordingFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: Filtering recordings
      properties:
        orderBy:
          enum:
          - START_DATE_ASC
          - START_DATE_DESC
          - ID_ASC
          - ID_DESC
          - SERIES_ID_ASC
          - SERIES_ID_DESC
          type: string
          x-enumLabels:
          - START_DATE_ASC
          - START_DATE_DESC
          - ID_ASC
          - ID_DESC
          - SERIES_ID_ASC
          - SERIES_ID_DESC
          x-enumType: KalturaSeriesRecordingOrderBy
      title: KalturaSeriesRecordingFilter
      type: object
    KalturaSubscriptionSetFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        idIn:
          description: Comma separated identifiers
          type: string
        orderBy:
          enum:
          - NAME_ASC
          - NAME_DESC
          type: string
          x-enumLabels:
          - NAME_ASC
          - NAME_DESC
          x-enumType: KalturaSubscriptionSetOrderBy
        subscriptionIdContains:
          description: Comma separated subscription identifiers
          type: string
        typeEqual:
          description: 'Enum Type: `KalturaSubscriptionSetType`


            Subscription Type'
          enum:
          - SWITCH
          - DEPENDENCY
          type: string
          x-enumLabels:
          - SWITCH
          - DEPENDENCY
          x-enumType: KalturaSubscriptionSetType
      title: KalturaSubscriptionSetFilter
      type: object
    KalturaFollowTvSeriesFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        orderBy:
          enum:
          - START_DATE_DESC
          - START_DATE_ASC
          type: string
          x-enumLabels:
          - START_DATE_DESC
          - START_DATE_ASC
          x-enumType: KalturaFollowTvSeriesOrderBy
      title: KalturaFollowTvSeriesFilter
      type: object
    KalturaAssetReminderFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaReminderFilter'
      properties:
        orderBy:
          enum:
          - RELEVANCY_DESC
          - NAME_ASC
          - NAME_DESC
          - VIEWS_DESC
          - RATINGS_DESC
          - VOTES_DESC
          - START_DATE_DESC
          - START_DATE_ASC
          - LIKES_DESC
          type: string
          x-enumLabels:
          - RELEVANCY_DESC
          - NAME_ASC
          - NAME_DESC
          - VIEWS_DESC
          - RATINGS_DESC
          - VOTES_DESC
          - START_DATE_DESC
          - START_DATE_ASC
          - LIKES_DESC
          x-enumType: KalturaAssetReminderOrderBy
      title: KalturaAssetReminderFilter
      type: object
    KalturaPremiumService:
      description: Premium service
      properties:
        id:
          description: '`readOnly`


            Service identifier'
          readOnly: true
          type: integer
        name:
          description: Service name / description
          type: string
      title: KalturaPremiumService
      type: object
    KalturaDoubleValue:
      allOf:
      - $ref: '#/components/schemas/KalturaValue'
      description: A string representation to return an array of doubles
      properties:
        value:
          description: Value
          type: number
      title: KalturaDoubleValue
      type: object
    KalturaCoupon:
      description: Coupon details container
      properties:
        couponsGroup:
          $ref: '#/components/schemas/KalturaCouponsGroup'
        status:
          description: '`readOnly`


            Enum Type: `KalturaCouponStatus`


            Coupon status'
          enum:
          - VALID
          - NOT_EXISTS
          - ALREADY_USED
          - EXPIRED
          - INACTIVE
          readOnly: true
          type: string
          x-enumLabels:
          - VALID
          - NOT_EXISTS
          - ALREADY_USED
          - EXPIRED
          - INACTIVE
          x-enumType: KalturaCouponStatus
      title: KalturaCoupon
      type: object
    OTTRequest:
      properties:
        ks:
          type: string
        version:
          default: 3.6.287.20720
          type: string
      type: object
    KalturaMultilingualStringValue:
      allOf:
      - $ref: '#/components/schemas/KalturaValue'
      description: Array of translated strings
      properties:
        multilingualValue:
          items:
            $ref: '#/components/schemas/KalturaTranslationToken'
          type: array
        value:
          description: Value
          type: string
      title: KalturaMultilingualStringValue
      type: object
    KalturaPriceDetails:
      description: Price details
      properties:
        descriptions:
          items:
            $ref: '#/components/schemas/KalturaTranslationToken'
          type: array
        id:
          description: '`readOnly`


            The price code identifier'
          readOnly: true
          type: integer
        multiCurrencyPrice:
          items:
            $ref: '#/components/schemas/KalturaPrice'
          type: array
        name:
          description: The price code name
          type: string
        price:
          $ref: '#/components/schemas/KalturaPrice'
      title: KalturaPriceDetails
      type: object
    KalturaHouseholdUserFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        householdIdEqual:
          description: The identifier of the household
          type: integer
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaHouseholdUserOrderBy
      title: KalturaHouseholdUserFilter
      type: object
    KalturaValue:
      description: '`abstract`


        A representation to return an array of values'
      discriminator:
        propertyName: objectType
      oneOf:
      - $ref: '#/components/schemas/KalturaIntegerValue'
      - $ref: '#/components/schemas/KalturaMultilingualStringValue'
      - $ref: '#/components/schemas/KalturaLongValue'
      - $ref: '#/components/schemas/KalturaDoubleValue'
      - $ref: '#/components/schemas/KalturaBooleanValue'
      - $ref: '#/components/schemas/KalturaStringValue'
      properties:
        description:
          description: Description
          type: string
        objectType:
          enum:
          - KalturaIntegerValue
          - KalturaMultilingualStringValue
          - KalturaLongValue
          - KalturaDoubleValue
          - KalturaBooleanValue
          - KalturaStringValue
          type: string
      title: KalturaValue
      type: object
    KalturaIntegerValue:
      allOf:
      - $ref: '#/components/schemas/KalturaValue'
      description: A string representation to return an array of ints
      properties:
        value:
          description: Value
          type: integer
      title: KalturaIntegerValue
      type: object
    KalturaAggregationCountFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaRelatedObjectFilter'
      description: Kaltura Aggregation CountFilter
      properties:
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaAggregationCountOrderBy
      title: KalturaAggregationCountFilter
      type: object
    KalturaCollectionFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: Collection Filter
      properties:
        collectionIdIn:
          description: Comma separated collection IDs
          type: string
        mediaFileIdEqual:
          description: Media-file ID to get the subscriptions by
          type: integer
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaCollectionOrderBy
      title: KalturaCollectionFilter
      type: object
    KalturaPriceDetailsFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        idIn:
          description: Comma separated price identifiers
          type: string
        orderBy:
          enum:
          - NAME_ASC
          type: string
          x-enumLabels:
          - NAME_ASC
          x-enumType: KalturaPriceDetailsOrderBy
      title: KalturaPriceDetailsFilter
      type: object
    KalturaImageFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        idIn:
          description: IDs to filter by
          type: string
        imageObjectIdEqual:
          description: ID of the object the is related to, to filter by
          type: integer
        imageObjectTypeEqual:
          description: 'Enum Type: `KalturaImageObjectType`


            Type of the object the image is related to, to filter by'
          enum:
          - MEDIA_ASSET
          - PROGRAM_ASSET
          - CHANNEL
          - CATEGORY
          - PARTNER
          - IMAGE_TYPE
          type: string
          x-enumLabels:
          - MEDIA_ASSET
          - PROGRAM_ASSET
          - CHANNEL
          - CATEGORY
          - PARTNER
          - IMAGE_TYPE
          x-enumType: KalturaImageObjectType
        isDefaultEqual:
          description: Filter images that are default on atleast on image type or not default at any
          type: boolean
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaImageOrderBy
      title: KalturaImageFilter
      type: object
    KalturaParentalRuleFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        entityReferenceEqual:
          description: 'Enum Type: `KalturaEntityReferenceBy`


            Reference type to filter by'
          enum:
          - user
          - household
          type: string
          x-enumLabels:
          - USER
          - HOUSEHOLD
          x-enumType: KalturaEntityReferenceBy
        orderBy:
          enum:
          - PARTNER_SORT_VALUE
          type: string
          x-enumLabels:
          - PARTNER_SORT_VALUE
          x-enumType: KalturaParentalRuleOrderBy
      title: KalturaParentalRuleFilter
      type: object
    KalturaAnnouncementFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: order announcements
      properties:
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaAnnouncementOrderBy
      title: KalturaAnnouncementFilter
      type: object
    KalturaFavoriteFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: Favorite request filter
      properties:
        mediaIdIn:
          description: Media identifiers from which to filter the favorite assets
          type: string
        mediaTypeEqual:
          description: Media type to filter by the favorite assets
          type: integer
        orderBy:
          enum:
          - CREATE_DATE_ASC
          - CREATE_DATE_DESC
          type: string
          x-enumLabels:
          - CREATE_DATE_ASC
          - CREATE_DATE_DESC
          x-enumType: KalturaFavoriteOrderBy
        udidEqualCurrent:
          description: Indicates whether the results should be filtered by origin UDID using the current
          type: boolean
      title: KalturaFavoriteFilter
      type: object
    KalturaPersistedFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: '`abstract`'
      discriminator:
        propertyName: objectType
      oneOf:
      - $ref: '#/components/schemas/KalturaAssetFilter'
      properties:
        name:
          description: Name for the presisted filter. If empty, no action will be done. If has value, the filter will be saved and persisted in user's search history.
          type: string
        objectType:
          enum:
          - KalturaAssetFilter
          type: string
      title: KalturaPersistedFilter
      type: object
    KalturaMetaFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: Meta filter
      properties:
        assetStructIdEqual:
          description: Filter Metas that are contained in a specific asset struct
          type: integer
        dataTypeEqual:
          description: 'Enum Type: `KalturaMetaDataType`


            Meta data type to filter by'
          enum:
          - STRING
          - MULTILINGUAL_STRING
          - NUMBER
          - BOOLEAN
          - DATE
          type: string
          x-enumLabels:
          - STRING
          - MULTILINGUAL_STRING
          - NUMBER
          - BOOLEAN
          - DATE
          x-enumType: KalturaMetaDataType
        idIn:
          description: Comma separated identifiers
          type: string
        multipleValueEqual:
          description: Filter metas by multipleValueEqual value
          type: boolean
        orderBy:
          enum:
          - NAME_ASC
          - NAME_DESC
          - SYSTEM_NAME_ASC
          - SYSTEM_NAME_DESC
          - CREATE_DATE_ASC
          - CREATE_DATE_DESC
          - UPDATE_DATE_ASC
          - UPDATE_DATE_DESC
          type: string
          x-enumLabels:
          - NAME_ASC
          - NAME_DESC
          - SYSTEM_NAME_ASC
          - SYSTEM_NAME_DESC
          - CREATE_DATE_ASC
          - CREATE_DATE_DESC
          - UPDATE_DATE_ASC
          - UPDATE_DATE_DESC
          x-enumType: KalturaMetaOrderBy
      title: KalturaMetaFilter
      type: object
    KalturaSearchHistoryFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaSearchHistoryOrderBy
      title: KalturaSearchHistoryFilter
      type: object
    KalturaFilter:
      description: '`abstract`'
      discriminator:
        propertyName: objectType
      oneOf:
      - $ref: '#/components/schemas/KalturaRelatedObjectFilter'
      - $ref: '#/components/schemas/KalturaChannelsFilter'
      - $ref: '#/components/schemas/KalturaMediaFileFilter'
      - $ref: '#/components/schemas/KalturaImageFilter'
      - $ref: '#/components/schemas/KalturaImageTypeFilter'
      - $ref: '#/components/schemas/KalturaTagFilter'
      - $ref: '#/components/schemas/KalturaAssetStructFilter'
      - $ref: '#/components/schemas/KalturaCurrencyFilter'
      - $ref: '#/components/schemas/KalturaPersistedFilter'
      - $ref: '#/components/schemas/KalturaCollectionFilter'
      - $ref: '#/components/schemas/KalturaPricePlanFilter'
      - $ref: '#/components/schemas/KalturaPriceDetailsFilter'
      - $ref: '#/components/schemas/KalturaSubscriptionSetFilter'
      - $ref: '#/components/schemas/KalturaLanguageFilter'
      - $ref: '#/components/schemas/KalturaMetaFilter'
      - $ref: '#/components/schemas/KalturaCountryFilter'
      - $ref: '#/components/schemas/KalturaSearchHistoryFilter'
      - $ref: '#/components/schemas/KalturaConfigurationsFilter'
      - $ref: '#/components/schemas/KalturaReportFilter'
      - $ref: '#/components/schemas/KalturaConfigurationGroupTagFilter'
      - $ref: '#/components/schemas/KalturaConfigurationGroupDeviceFilter'
      - $ref: '#/components/schemas/KalturaHouseholdDeviceFilter'
      - $ref: '#/components/schemas/KalturaRegionFilter'
      - $ref: '#/components/schemas/KalturaUserAssetRuleFilter'
      - $ref: '#/components/schemas/KalturaParentalRuleFilter'
      - $ref: '#/components/schemas/KalturaExportTaskFilter'
      - $ref: '#/components/schemas/KalturaAssetCommentFilter'
      - $ref: '#/components/schemas/KalturaBookmarkFilter'
      - $ref: '#/components/schemas/KalturaSeriesRecordingFilter'
      - $ref: '#/components/schemas/KalturaProductPriceFilter'
      - $ref: '#/components/schemas/KalturaEntitlementFilter'
      - $ref: '#/components/schemas/KalturaTransactionHistoryFilter'
      - $ref: '#/components/schemas/KalturaUserRoleFilter'
      - $ref: '#/components/schemas/KalturaPaymentMethodProfileFilter'
      - $ref: '#/components/schemas/KalturaAssetHistoryFilter'
      - $ref: '#/components/schemas/KalturaRecordingContextFilter'
      - $ref: '#/components/schemas/KalturaRecordingFilter'
      - $ref: '#/components/schemas/KalturaHouseholdUserFilter'
      - $ref: '#/components/schemas/KalturaEngagementFilter'
      - $ref: '#/components/schemas/KalturaReminderFilter'
      - $ref: '#/components/schemas/KalturaFollowTvSeriesFilter'
      - $ref: '#/components/schemas/KalturaInboxMessageFilter'
      - $ref: '#/components/schemas/KalturaAnnouncementFilter'
      - $ref: '#/components/schemas/KalturaPersonalFeedFilter'
      - $ref: '#/components/schemas/KalturaTopicFilter'
      - $ref: '#/components/schemas/KalturaSubscriptionFilter'
      - $ref: '#/components/schemas/KalturaSocialCommentFilter'
      - $ref: '#/components/schemas/KalturaSocialFriendActivityFilter'
      - $ref: '#/components/schemas/KalturaSocialActionFilter'
      - $ref: '#/components/schemas/KalturaFavoriteFilter'
      - $ref: '#/components/schemas/KalturaOTTUserFilter'
      properties:
        objectType:
          enum:
          - KalturaRelatedObjectFilter
          - KalturaChannelsFilter
          - KalturaMediaFileFilter
          - KalturaImageFilter
          - KalturaImageTypeFilter
          - KalturaTagFilter
          - KalturaAssetStructFilter
          - KalturaCurrencyFilter
          - KalturaPersistedFilter
          - KalturaCollectionFilter
          - KalturaPricePlanFilter
          - KalturaPriceDetailsFilter
          - KalturaSubscriptionSetFilter
          - KalturaLanguageFilter
          - KalturaMetaFilter
          - KalturaCountryFilter
          - KalturaSearchHistoryFilter
          - KalturaConfigurationsFilter
          - KalturaReportFilter
          - KalturaConfigurationGroupTagFilter
          - KalturaConfigurationGroupDeviceFilter
          - KalturaHouseholdDeviceFilter
          - KalturaRegionFilter
          - KalturaUserAssetRuleFilter
          - KalturaParentalRuleFilter
          - KalturaExportTaskFilter
          - KalturaAssetCommentFilter
          - KalturaBookmarkFilter
          - KalturaSeriesRecordingFilter
          - KalturaProductPriceFilter
          - KalturaEntitlementFilter
          - KalturaTransactionHistoryFilter
          - KalturaUserRoleFilter
          - KalturaPaymentMethodProfileFilter
          - KalturaAssetHistoryFilter
          - KalturaRecordingContextFilter
          - KalturaRecordingFilter
          - KalturaHouseholdUserFilter
          - KalturaEngagementFilter
          - KalturaReminderFilter
          - KalturaFollowTvSeriesFilter
          - KalturaInboxMessageFilter
          - KalturaAnnouncementFilter
          - KalturaPersonalFeedFilter
          - KalturaTopicFilter
          - KalturaSubscriptionFilter
          - KalturaSocialCommentFilter
          - KalturaSocialFriendActivityFilter
          - KalturaSocialActionFilter
          - KalturaFavoriteFilter
          - KalturaOTTUserFilter
          type: string
        orderBy:
          description: order by
          type: string
      title: KalturaFilter
      type: object
    KalturaUserRoleFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: User roles filter
      properties:
        currentUserRoleIdsContains:
          description: Indicates whether the results should be filtered by userId using the current
          type: boolean
        idIn:
          description: Comma separated roles identifiers
          type: string
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaUserRoleOrderBy
      title: KalturaUserRoleFilter
      type: object
    KalturaInboxMessageFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        createdAtGreaterThanOrEqual:
          description: createdAtGreaterThanOrEqual
          type: integer
        createdAtLessThanOrEqual:
          description: createdAtLessThanOrEqual
          type: integer
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaInboxMessageOrderBy
        typeIn:
          description: List of inbox message types to search within.
          type: string
      title: KalturaInboxMessageFilter
      type: object
    KalturaRecordingContextFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: Filtering assets
      properties:
        assetIdIn:
          description: Comma separated asset ids
          type: string
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaRecordingContextOrderBy
      title: KalturaRecordingContextFilter
      type: object
    KalturaProductPriceFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        collectionIdIn:
          description: Comma separated collections identifiers
          type: string
        couponCodeEqual:
          description: Discount coupon code
          type: string
        fileIdIn:
          description: Comma separated media files identifiers
          type: string
        isLowest:
          description: A flag that indicates if only the lowest price of an item should return
          type: boolean
        orderBy:
          enum:
          - PRODUCT_ID_ASC
          - PRODUCT_ID_DESC
          type: string
          x-enumLabels:
          - PRODUCT_ID_ASC
          - PRODUCT_ID_DESC
          x-enumType: KalturaProductPriceOrderBy
        subscriptionIdIn:
          description: Comma separated subscriptions identifiers
          type: string
      title: KalturaProductPriceFilter
      type: object
    KalturaLongValue:
      allOf:
      - $ref: '#/components/schemas/KalturaValue'
      description: A string representation to return an array of longs
      properties:
        value:
          description: Value
          type: integer
      title: KalturaLongValue
      type: object
    KalturaAssetHistoryFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        assetIdIn:
          description: Comma separated list of asset identifiers.
          type: string
        daysLessThanOrEqual:
          description: How many days back to return the watched media. If omitted, default to 7 days
          type: integer
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaAssetHistoryOrderBy
        statusEqual:
          description: "Enum Type: `KalturaWatchStatus`\n\nWhich type of recently watched media to include in the result – those that finished watching, those that are in progress or both.\n            If omitted or specified filter = all – return all types.\n            Allowed values: progress – return medias that are in-progress, done – return medias that finished watching."
          enum:
          - progress
          - done
          - all
          type: string
          x-enumLabels:
          - PROGRESS
          - DONE
          - ALL
          x-enumType: KalturaWatchStatus
        typeIn:
          description: "Comma separated list of asset types to search within.\n            Possible values: 0 – EPG linear programs entries, any media type ID (according to media type IDs defined dynamically in the system).\n            If omitted – all types should be included."
          type: string
      title: KalturaAssetHistoryFilter
      type: object
    KalturaPricePlanFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        idIn:
          description: Comma separated price plans identifiers
          type: string
        orderBy:
          enum:
          - CREATE_DATE_DESC
          type: string
          x-enumLabels:
          - CREATE_DATE_DESC
          x-enumType: KalturaPricePlanOrderBy
      title: KalturaPricePlanFilter
      type: object
    KalturaSubscription:
      description: Subscription details
      properties:
        channels:
          items:
            $ref: '#/components/schemas/KalturaBaseChannel'
          type: array
        couponsGroups:
          items:
            $ref: '#/components/schemas/KalturaCouponsGroup'
          type: array
        dependencyType:
          description: 'Enum Type: `KalturaSubscriptionDependencyType`


            Dependency Type'
          enum:
          - NOTAPPLICABLE
          - BASE
          - ADDON
          type: string
          x-enumLabels:
          - NOTAPPLICABLE
          - BASE
          - ADDON
          x-enumType: KalturaSubscriptionDependencyType
        description:
          description: description of the subscription
          type: string
        discountModule:
          $ref: '#/components/schemas/KalturaDiscountModule'
        endDate:
          description: The last date the subscription is available for purchasing
          type: integer
        externalId:
          description: External ID
          type: string
        fileTypes:
          items:
            $ref: '#/components/schemas/KalturaIntegerValue'
          type: array
        gracePeriodMinutes:
          description: The subscription grace period in minutes
          type: integer
        householdLimitationsId:
          description: The household limitation module identifier associated with this subscription
          type: integer
        id:
          description: Subscription identifier
          type: string
        isCancellationBlocked:
          description: Is cancellation blocked for the subscription
          type: boolean
        isInfiniteRenewal:
          description: Indicates whether the subscription will renew forever
          type: boolean
        isRenewable:
          description: Denotes whether or not this subscription can be renewed
          type: boolean
        isWaiverEnabled:
          description: Indicates whether or not the end user has the right to waive his rights to cancel a purchase
          type: boolean
        maxViewsNumber:
          description: The maximum number of times an item in this usage module can be viewed
          type: integer
        mediaId:
          description: Identifier of the media associated with the subscription
          type: integer
        multilingualDescription:
          items:
            $ref: '#/components/schemas/KalturaTranslationToken'
          type: array
        multilingualName:
          items:
            $ref: '#/components/schemas/KalturaTranslationToken'
          type: array
        name:
          description: Name of the subscription
          type: string
        premiumServices:
          items:
            $ref: '#/components/schemas/KalturaPremiumService'
          type: array
        previewModule:
          $ref: '#/components/schemas/KalturaPreviewModule'
        price:
          $ref: '#/components/schemas/KalturaPriceDetails'
        pricePlanIds:
          description: Comma separated subscription price plan IDs
          type: string
        productCodes:
          items:
            $ref: '#/components/schemas/KalturaProductCode'
          type: array
        prorityInOrder:
          description: Subscription order (when returned in methods that retrieve subscriptions)
          type: integer
        renewalsNumber:
          description: Defines the number of times this subscription will be renewed
          type: integer
        startDate:
          description: The first date the subscription is available for purchasing
          type: integer
        userTypes:
          items:
            $ref: '#/components/schemas/KalturaOTTUserType'
          type: array
        viewLifeCycle:
          description: The amount time an item is available for viewing since a user started watching the item
          type: integer
        waiverPeriod:
          description: Time period during which the end user can waive his rights to cancel a purchase. When the time period is passed, the purchase can no longer be cancelled
          type: integer
      title: KalturaSubscription
      type: object
    KalturaSocialFriendActivityFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFi

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