Coming from 3.27.25+211116 LTS I wanted to use list_survey_groups (which was introduced in 4.5.0).
However I am having issues with the API starting from 4.3.34 (up to 5.2.2) as it is not behaving as expected:
Test-Setup:
- There are three surveys in total.
- There is a user "USER" who owns two of them (empty "Survey permissions" list).
- The other one is owned by "admin" (empty "Survey permissions" list).
- There is a user "api" which is used to access the API (JSON-RPC)
3.27.25+211116 LTS:
- In this setup the "api" user has no extra permissions other than "Use internal database authentication" (default).
- I can call list_surveys like so:
Code:
{"method": "list_surveys", "params": ["TOKEN", "USER"], "id": 1}
- With this the API returns all surveys for USER just as expected.
- For null instead of USER the API returns all surveys (for all users).
up to 4.3.34:
- Same behaviour as 3.27.25+211116 LTS
4.4.0+:
- With the same settings / permissions, the API returns no results
Code:
{"id":1,"result":{"status":"No surveys found"},"error":null}
- If I grant "View/read" permissions for the "api" user on "Surveys" the API returns all surveys with USER set or null.
I am not able to fetch surveys for a specific user no matter what permission I grant to the "api" user; I either receive all surveys or none.
Am I missing something here or is this a bug?