When we try to get program data by rest api, we can do it by different ways as below Query By Id By Name Browse By Date Range By Tag Type In this, when I hit rest api to get program details by Id ie. GET /rest/asset/v1/program/{id}.json I get all fields including startDate,endDate,tags but when I hit rest api to get program details by browse ie. GET /rest/asset/v1/programs.json I didnt get all fields . I only get --> id, name, createdAt, updatedAt, url, type, channel, folder, status, workspace in which startDate,endDate,tags are not present for same program Ids As we need all programs with our system, and hitting api on id basis will be too much time consuming, is there any way we can get all program data in browse itself with all fields
... View more