Open Context Protocol is live! 🚀 Read the launch post

postPricesPrice

Update a price

Details

  • Method: POST
  • Path: /v1/prices/{price}
  • Operation ID: PostPricesPrice

Parameters

{
  "price": {
    "description": "",
    "required": true,
    "location": "path",
    "type": "string"
  }
}

Response Schema

{
  "description": "Prices define the unit cost, currency, and (optional) billing cycle for both recurring and one-time purchases of products.\n[Products](https://api.stripe.com#products) help you track inventory or provisioning, and prices help you track payment terms. Different physical goods or levels of service should be represented by products, and pricing options should be represented by prices. This approach lets you change prices without having to change your provisioning scheme.\n\nFor example, you might have a single \"gold\" product that has prices for $10/month, $100/year, and €9 once.\n\nRelated guides: [Set up a subscription](https://docs.stripe.com/billing/subscriptions/set-up-subscription), [create an invoice](https://docs.stripe.com/billing/invoices/create), and more about [products and prices](https://docs.stripe.com/products-prices/overview).",
  "properties": {
    "active": {
      "description": "Whether the price can be used for new purchases.",
      "type": "boolean"
    },
    "billing_scheme": {
      "description": "Describes how to compute the price per period. Either `per_unit` or `tiered`. `per_unit` indicates that the fixed amount (specified in `unit_amount` or `unit_amount_decimal`) will be charged per unit in `quantity` (for prices with `usage_type=licensed`), or per unit of total usage (for prices with `usage_type=metered`). `tiered` indicates that the unit pricing will be computed using a tiering strategy as defined using the `tiers` and `tiers_mode` attributes.",
      "enum": [
        "per_unit",
        "tiered"
      ],
      "type": "string"
    },
    "created": {
      "description": "Time at which the object was created. Measured in seconds since the Unix epoch.",
      "format": "unix-time",
      "type": "integer"
    },
    "currency": {
      "description": "Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).",
      "format": "currency",
      "type": "string"
    },
    "currency_options": {
      "additionalProperties": {
        "description": "",
        "properties": {
          "custom_unit_amount": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/custom_unit_amount"
              }
            ],
            "description": "When set, provides configuration for the amount to be adjusted by the customer during Checkout Sessions and Payment Links.",
            "nullable": true
          },
          "tax_behavior": {
            "description": "Only required if a [default tax behavior](https://docs.stripe.com/tax/products-prices-tax-categories-tax-behavior#setting-a-default-tax-behavior-(recommended)) was not provided in the Stripe Tax settings. Specifies whether the price is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`. Once specified as either `inclusive` or `exclusive`, it cannot be changed.",
            "enum": [
              "exclusive",
              "inclusive",
              "unspecified"
            ],
            "nullable": true,
            "type": "string"
          },
          "tiers": {
            "description": "Each element represents a pricing tier. This parameter requires `billing_scheme` to be set to `tiered`. See also the documentation for `billing_scheme`.",
            "items": {
              "description": "",
              "properties": {
                "flat_amount": {
                  "description": "Price for the entire tier.",
                  "nullable": true,
                  "type": "integer"
                },
                "flat_amount_decimal": {
                  "description": "Same as `flat_amount`, but contains a decimal value with at most 12 decimal places.",
                  "format": "decimal",
                  "nullable": true,
                  "type": "string"
                },
                "unit_amount": {
                  "description": "Per unit price for units relevant to the tier.",
                  "nullable": true,
                  "type": "integer"
                },
                "unit_amount_decimal": {
                  "description": "Same as `unit_amount`, but contains a decimal value with at most 12 decimal places.",
                  "format": "decimal",
                  "nullable": true,
                  "type": "string"
                },
                "up_to": {
                  "description": "Up to and including to this quantity will be contained in the tier.",
                  "nullable": true,
                  "type": "integer"
                }
              },
              "title": "PriceTier",
              "type": "object",
              "x-expandableFields": []
            },
            "type": "array"
          },
          "unit_amount": {
            "description": "The unit amount in cents (or local equivalent) to be charged, represented as a whole integer if possible. Only set if `billing_scheme=per_unit`.",
            "nullable": true,
            "type": "integer"
          },
          "unit_amount_decimal": {
            "description": "The unit amount in cents (or local equivalent) to be charged, represented as a decimal string with at most 12 decimal places. Only set if `billing_scheme=per_unit`.",
            "format": "decimal",
            "nullable": true,
            "type": "string"
          }
        },
        "title": "CurrencyOption",
        "type": "object",
        "x-expandableFields": [
          "custom_unit_amount",
          "tiers"
        ]
      },
      "description": "Prices defined in each available currency option. Each key must be a three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html) and a [supported currency](https://stripe.com/docs/currencies).",
      "type": "object"
    },
    "custom_unit_amount": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/custom_unit_amount"
        }
      ],
      "description": "When set, provides configuration for the amount to be adjusted by the customer during Checkout Sessions and Payment Links.",
      "nullable": true
    },
    "id": {
      "description": "Unique identifier for the object.",
      "maxLength": 5000,
      "type": "string"
    },
    "livemode": {
      "description": "Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.",
      "type": "boolean"
    },
    "lookup_key": {
      "description": "A lookup key used to retrieve prices dynamically from a static string. This may be up to 200 characters.",
      "maxLength": 5000,
      "nullable": true,
      "type": "string"
    },
    "metadata": {
      "additionalProperties": {
        "maxLength": 500,
        "type": "string"
      },
      "description": "Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.",
      "type": "object"
    },
    "nickname": {
      "description": "A brief description of the price, hidden from customers.",
      "maxLength": 5000,
      "nullable": true,
      "type": "string"
    },
    "object": {
      "description": "String representing the object's type. Objects of the same type share the same value.",
      "enum": [
        "price"
      ],
      "type": "string"
    },
    "product": {
      "anyOf": [
        {
          "maxLength": 5000,
          "type": "string"
        },
        {
          "$ref": "#/components/schemas/product"
        },
        {
          "$ref": "#/components/schemas/deleted_product"
        }
      ],
      "description": "The ID of the product this price is associated with.",
      "x-expansionResources": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/product"
          },
          {
            "$ref": "#/components/schemas/deleted_product"
          }
        ]
      }
    },
    "recurring": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/recurring"
        }
      ],
      "description": "The recurring components of a price such as `interval` and `usage_type`.",
      "nullable": true
    },
    "tax_behavior": {
      "description": "Only required if a [default tax behavior](https://docs.stripe.com/tax/products-prices-tax-categories-tax-behavior#setting-a-default-tax-behavior-(recommended)) was not provided in the Stripe Tax settings. Specifies whether the price is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`. Once specified as either `inclusive` or `exclusive`, it cannot be changed.",
      "enum": [
        "exclusive",
        "inclusive",
        "unspecified"
      ],
      "nullable": true,
      "type": "string"
    },
    "tiers": {
      "description": "Each element represents a pricing tier. This parameter requires `billing_scheme` to be set to `tiered`. See also the documentation for `billing_scheme`.",
      "items": {
        "description": "",
        "properties": {
          "flat_amount": {
            "description": "Price for the entire tier.",
            "nullable": true,
            "type": "integer"
          },
          "flat_amount_decimal": {
            "description": "Same as `flat_amount`, but contains a decimal value with at most 12 decimal places.",
            "format": "decimal",
            "nullable": true,
            "type": "string"
          },
          "unit_amount": {
            "description": "Per unit price for units relevant to the tier.",
            "nullable": true,
            "type": "integer"
          },
          "unit_amount_decimal": {
            "description": "Same as `unit_amount`, but contains a decimal value with at most 12 decimal places.",
            "format": "decimal",
            "nullable": true,
            "type": "string"
          },
          "up_to": {
            "description": "Up to and including to this quantity will be contained in the tier.",
            "nullable": true,
            "type": "integer"
          }
        },
        "title": "PriceTier",
        "type": "object",
        "x-expandableFields": []
      },
      "type": "array"
    },
    "tiers_mode": {
      "description": "Defines if the tiering price should be `graduated` or `volume` based. In `volume`-based tiering, the maximum quantity within a period determines the per unit price. In `graduated` tiering, pricing can change as the quantity grows.",
      "enum": [
        "graduated",
        "volume"
      ],
      "nullable": true,
      "type": "string"
    },
    "transform_quantity": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/transform_quantity"
        }
      ],
      "description": "Apply a transformation to the reported usage or set quantity before computing the amount billed. Cannot be combined with `tiers`.",
      "nullable": true
    },
    "type": {
      "description": "One of `one_time` or `recurring` depending on whether the price is for a one-time purchase or a recurring (subscription) purchase.",
      "enum": [
        "one_time",
        "recurring"
      ],
      "type": "string"
    },
    "unit_amount": {
      "description": "The unit amount in cents (or local equivalent) to be charged, represented as a whole integer if possible. Only set if `billing_scheme=per_unit`.",
      "nullable": true,
      "type": "integer"
    },
    "unit_amount_decimal": {
      "description": "The unit amount in cents (or local equivalent) to be charged, represented as a decimal string with at most 12 decimal places. Only set if `billing_scheme=per_unit`.",
      "format": "decimal",
      "nullable": true,
      "type": "string"
    }
  },
  "required": [
    "active",
    "billing_scheme",
    "created",
    "currency",
    "id",
    "livemode",
    "metadata",
    "object",
    "product",
    "type"
  ],
  "title": "Price",
  "type": "object",
  "x-expandableFields": [
    "currency_options",
    "custom_unit_amount",
    "product",
    "recurring",
    "tiers",
    "transform_quantity"
  ],
  "x-resourceId": "price"
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('stripe')

# Call this tool
result = await agent.call_tool('postPricesPrice', {
    # Add required parameters here
})