Categories
- All Categories
- 70 Oracle Analytics News
- 7 Oracle Analytics Videos
- 13.9K Oracle Analytics Forums
- 5.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 38 Oracle Analytics Trainings
- 56 Oracle Analytics Data Visualizations
- 2 Oracle Analytics Data Visualizations Challenge
- 2 Oracle Analytics Career
- 4 Oracle Analytics Industry
- Find Partners
- For Partners
How to pass parameters in RunReport on OBIP using REST API or SOAP
I am able to get a valid output on both rest and soap when I dont add the parameters to the request
On the SOAP, I get the
On the REST API, I get error code 400 when I try to add the parameters to the curl
Can anyone assist with how the sample payload with parameters
Best Answer
-
Hi @Eugene_A_O
Refer below given some example with syntax's - (Windows vs Linux )
E-BI Publisher: How to Access the Oracle BI Publisher REST API Using POST Method? (Doc ID 3028543.1)
Regards,
Arjun
1
Answers
-
Which product are you using (oac/oas/standalone bip)? Please share details of the actual command you are using (curl command for rest call) .
The following KM doc has example of a REST call to create a job for a report which has one parameter. Please review the same.
BI Publisher Is Failing When Running Reports Using SOAP Webservices (Doc ID 2751276.1)
Other comments welcomed.
0 -
I am using OAS 2024
curl -X POST -u username:password -o sample_report.pdf -H "Content-Type:multipart/form-data" -v -F "ReportRequest={'parameterNameValues': {'listOfParamNameValues': {'item': [{'name': 'startDt','values': {'item': ['10-01-2024']}},{'name': 'endDt','values': {'item': ['10-02-2024']}},{'name': 'ACC','values': {'item': ['sample']}}]}}}; type=application/json" http://ipaddress:9502/xmlpserver/services/rest/v1/reports/SAMPLE_REPORT.xdo/run
0