Skip to main content

Update an account's bundle portfolio

Parameters
bundle_portfolio_idstringrequired
Returns
idstringrequired

Bundle portfolio unique identifier.


identifierstringrequired

Identifier of the bundle portfolio.


labelstringrequired

Human readable name of the bundle portfolio.


bundle_selectionarray of objectrequired

A Bundle Selection represents an account's default project bundle ratios that are used when an order is placed without specifying project bundles.

An account initial project bundle selection is

  • Conserving forests in Asia - 95%
  • Ocean Carbon Removal - 5%
  • PUT /bundle-portfolios
  • curl 'https://api.lune.co/v1/bundle-portfolios' \
      -H 'Authorization: Bearer <API_KEY>' \
      -H 'Content-Type: application/json' \
      -X PUT \
      -d '{
        "bundle_portfolio_id": "j85vWbLVZNlOayV94P8AM1K29RgJq4xX"
      }'
      
  • Response
  • {
      "id": "A7hPO9C01RnzPkYxJgAHxq112roXlWO5",
      "identifier": "oxford-offsetting-principles",
      "label": "Oxford Offseting Principles",
      "bundle_selection": [
        {
          "bundle_id": "BmWxrvXo29eGqzA1qjANL5PwnkgaO8R3",
          "percentage": 34
        },
        {
          "bundle_id": "VndoQ0PZjGMzvYOZGwqy6kbgN1eOJx9B",
          "percentage": 66
        }
      ]
    }