Hi,
I am running the following python code to get a list of Evars using the Adobe API but i receive an error:
{"error":"Bad Request","error_description":"No report suites defined.","error_uri":null}
payload={"X-WSSE: UsernameToken Username":"myusername", "PasswordDigest":"UhMNI+kV2N1llpgm7xPmtvMtu90", "Nonce":"a8c1005f41f646d196a6a8785061729b", "Created":"2017-11-01T09:39:30.071848Z"}
data= { "rsid_list":[
"myreportsuiteid"
]}
r = requests.post('https://api.omniture.com/admin/1.4/rest/?method=ReportSuite.GetEvars',headers=payload, data=data)
status= r.status_code
print(r.text)
How do you pass the rsid to the post request?
Thanks