Hi,
i try to implement kind of a gateway to autoamtically transfer datasets from different sources into XIBO.
Therefore i use the REST api in 1.8.2.
The method /api/dataset
should return the following data if i follow the swagger documentation:
Respsonse: [
{
"dataSetId": 0,
"dataSet": "string",
"description": "string",
"userId": 0,
"lastDataEdit": 0,
"owner": "string",
"groupsWithPermissions": "string",
"code": "string",
"isLookup": 0
}
]
but it returns one more parameter columns. additionally this parameter is always empty:
Response: [
{
"dataSetId": 1,
"dataSet": "Birthdays",
"description": "This is the list of upcoming birhtdays",
"userId": 1,
"lastDataEdit": "1502354968",
"owner": "admin",
"groupsWithPermissions": "tiger",
"code": "birthdaylist",
"isLookup": "0",
"columns": []
},
What is columns used for and is it an error that there is no value returned?
The dataset has valid columns and data stored.
Regards
Jens