Configure the number of decimal places for rate plan rates

You're viewing Apigee Edge documentation.
Go to the Apigee X documentation.
info

You can configure the number of decimal places that can be specified for rate plan rates for an organization, including rates for flat fees, volume bands, and bundles. By default, up to four decimal places are allowed.

To configure the number of decimal places, add the MINT.RATE_DECIMAL_PLACES property to an organization using the API. For example, you could use the following command to configure rate plan rates that can specify up to three decimal places for your organization:

$ curl -H "Content-Type:application/json" -X POST -d \
'{
     "properties": {
         "property": [ {
            "name" : "MINT.RATE_DECIMAL_PLACES",
            "value" : "3"
        } ]
     }

}' \
"https://api.enterprise.apigee.com/v1/organizations/{org_name}" \
-u email:password

For more information about updating organization properties using the API, see Update organization properties.