burlicconi
burlicconi

Reputation: 45

Passing parameters in SpagoBI REST 2.0

I wanted to use SpagoBI 2.0 REST API: http://docs.spagobi.apiary.io/#reference

Everything seems to be fine, reports are running fine on SpagoBI server, I can get all documents via:

http://spagobi-url/SpagoBI/restful-services/2.0/documents/

I can get subreport without parameter via: http://spagobi-url/SpagoBI/restful-services/2.0/documents/document_label/content

But I don't know how to pass parameter to run subreport with parameter?

Any clues?

Thanks in advance!

Upvotes: 0

Views: 223

Answers (1)

Davide
Davide

Reputation: 11

your solution is fine, but you can simplify the request body with parameters information: you just need to specify the parameters' URL name and their value, for example:

[
  {
    "urlName": "Position",
    "values": [
      "Store Manager"
    ]
  }
]

Pay attention to the fact that "subreport" means a report that is included into another bigger one, therefore your request was not so clear to me: I understood you were trying to execute just one "regular" report (that was not including other reports), is that right?

Hope this helps.

Best regards.

Davide

Upvotes: 1

Related Questions