custom transaction attributes in revenue report

I need to include custom attributes in the summary revenue report. The property MINT.SUMMARY_CUSTOM_ATTRIBUTES has been adjusted. Transactions have been successfully recorded in the revenue report and database, but the custom attributes are not appearing in the revenue report.

I followed https://docs.apigee.com/api-platform/monetization/create-reports#customattributes

Any suggestions?

Thanks,

1 Like

Are you also using the report API when generating the report and setting transactionCustomAttributes?

@dknezic Yes, I’m using API and setting the transactionCustomAttributes in request as below:

{
“fromDate”: “2023-02-01”,
“toDate”: “2023-02-08”,
“groupBy”: [
“PRODUCT”,
“RATEPLAN”,
“PACKAGE”,
“ORG”,
“BALANCE”,
“APPLICATION”,
“PACKAGE”,
“DEVELOPER”
],
“transactionCustomAttributes”:[“our custom attribute name”],
“transactionTypes”: [
“CHARGE”,
“PURCHASE”,“CREDIT”],
“currencyOption”: “LOCAL”,
“showSummary”: true,
“showTxDetail”:true
}