> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getmeasure.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Batch Move Product Pricing

> Move multiple product pricings to specified target products in batches



## OpenAPI

````yaml https://api.getmeasure.com/api/v1/docs/api_spec.json post /companies/{company_id}/pricing/batch_move
openapi: 3.1.0
info:
  title: Measure API
  description: APIs to communicate with Measure
  version: 1.0.0
servers:
  - url: https://api.getmeasure.com/api/v1
security: []
paths:
  /companies/{company_id}/pricing/batch_move:
    post:
      tags:
        - Pricing
      summary: Batch Move Product Pricing
      description: Move multiple product pricings to specified target products in batches
      operationId: Batch_Move_Product_Pricing
      parameters:
        - name: company_id
          in: path
          description: 'The company ID with the prefix ''cmp_''. '
          required: true
          schema:
            description: 'The company ID with the prefix ''cmp_''. '
            type: string
        - name: Idempotency-Key
          in: header
          description: >-
            The idempotency key that will be used to ensure the request is only
            performed once
          schema:
            description: >-
              The idempotency key that will be used to ensure the request is
              only performed once
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RequestBatchMoveProductPricingRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseBaseSuccessResponse'
      deprecated: false
      security:
        - apiKey:
            - ''
components:
  schemas:
    RequestBatchMoveProductPricingRequest:
      properties:
        batches:
          items:
            $ref: '#/components/schemas/RequestBatchMoveProductPricingBatch'
          maximum: 100
          minimum: 1
          type:
            - array
      required:
        - batches
      type: object
    ResponseBaseSuccessResponse:
      properties:
        success:
          type: boolean
      type: object
    RequestBatchMoveProductPricingBatch:
      properties:
        product_pricing_ids:
          items:
            type: string
          minimum: 1
          type:
            - array
        target_product_id:
          type: string
      required:
        - target_product_id
        - product_pricing_ids
      type: object
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer

````