Skip to main content
PUT
https://api.dintero.com/v1
/
accounts
/
{oid}
/
management
/
price-packages
/
{price_package_id}
aid_mgmnt_price_packages_put
curl --request PUT \
  --url https://api.dintero.com/v1/accounts/{oid}/management/price-packages/{price_package_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "products": [
    {
      "namespace": "checkout",
      "product_id": "checkout.capture.card",
      "prices": [
        {
          "type": "blend",
          "amounts": [
            {
              "flat_amount": 250,
              "unit_amount": "0.025",
              "name": "default",
              "description": "<string>"
            }
          ],
          "dimensions": [
            {
              "name": "currency",
              "values": [
                "NOK",
                "SEK"
              ]
            },
            {
              "name": "card.issuer_country",
              "values": [
                "NO",
                "SE"
              ]
            },
            {
              "name": "payment_product_type_category",
              "values": [
                "invoice",
                "b2b_invoice"
              ]
            }
          ]
        }
      ]
    }
  ]
}
'
{
  "price_package": {
    "name": "<string>",
    "description": "<string>",
    "products": [
      {
        "namespace": "checkout",
        "product_id": "checkout.capture.card",
        "prices": [
          {
            "type": "blend",
            "amounts": [
              {
                "flat_amount": 250,
                "unit_amount": "0.025",
                "name": "default",
                "description": "<string>"
              }
            ],
            "dimensions": [
              {
                "name": "currency",
                "values": [
                  "NOK",
                  "SEK"
                ]
              },
              {
                "name": "card.issuer_country",
                "values": [
                  "NO",
                  "SE"
                ]
              },
              {
                "name": "payment_product_type_category",
                "values": [
                  "invoice",
                  "b2b_invoice"
                ]
              }
            ]
          }
        ]
      }
    ],
    "price_package_id": "<string>",
    "type": "default",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_at": "2023-11-07T05:31:56Z",
    "created_by": "1c92f7e1-2897-4d46-bdcc-c127a914fb4e",
    "updated_at": "2023-11-07T05:31:56Z",
    "deleted_by": "1c92f7e1-2897-4d46-bdcc-c127a914fb4e",
    "deleted_at": "2023-11-07T05:31:56Z",
    "pricing_conditions": "<string>",
    "source_price_package_id": "<string>",
    "metadata": {},
    "creation_state": "pristine"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.dintero.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication (token authentication) should be used for accessing the API.

Use Get Token to get an access token for client credentials. Pass the token in the request header:

Authorization: Bearer {access_token}

where the access_token is JSON Web Tokens (JWT).

Path Parameters

oid
string<^[PT]{1}(?=(?:.{3}|.{8})$)[0-9]*$>
required

An id that uniquely identifies the account or owner (partner)

price_package_id
string
required

price package id

Body

application/json
name
string
required
description
string
required
products
object[]
required
pricing_conditions
string
source_price_package_id
string

The ID of the price package that this price package is based on.

metadata
object

A set of key/value pairs that you can attach to price package.

Response

Price package

price_package
object
required

This object contains the details for a price package that can be given to zero or more accounts

Last modified on May 12, 2026