Hello, I have copied the code to do some testing and it gives me an error in the NameError part: name 'df_result' is not defined. Did you mean: 'result'?
for index, row in df_result.iterrows():
current_value = df_result['Fiscal Year'][index]
body = {
"format":"PDF",
"paginatedReportConfiguration": {
"parameterValues":[
{"name": "DateFiscalYear", "value": current_value}
]
}
}
api_call = post_request(export_url, header, body)
export_id = api_call.json()['id']
export_id_list.append(export_id)
parameter_value_list.append(current_value)
Do you know what it could be?
Hello, I have copied the code to do some testing and it gives me an error in the NameError part: name 'df_result' is not defined. Did you mean: 'result'?
Do you know what it could be?