Closed lesavage closed 3 years ago
Currently, when a client fetches a list of groups when they have a Single App Plan, they are returned with:
{ "lastPage": true, "result": "success", "groups": [ { "groupId": 149300376, "groupName": "_org_admin", "type": "SYSADMIN_GROUP", "memberCount": 2 }, { "groupId": 295047964, "groupName": "Illustrator on Ipad: TestIllustratorOnIpad", "type": "PRODUCT_PROFILE", "adminGroupName": "_admin_Illustrator on Ipad: TestIllustratorOnIpad", "memberCount": 1, "productName": "Single App", "licenseQuota": "5" }, { "groupId": 295054807, "groupName": "Photoshop: Test Photoshop Profile", "type": "PRODUCT_PROFILE", "adminGroupName": "_admin_Photoshop: Test Photoshop Profile", "memberCount": 1, "productName": "Single App", "licenseQuota": "5" } ] }
Both profiles have the productName populated as Single App but they correspond to different products. On 20th July 2021 we will release an update to populate this field with the correct product name:
productName
{ "lastPage": true, "result": "success", "groups": [ { "groupId": 149300376, "groupName": "_org_admin", "type": "SYSADMIN_GROUP", "memberCount": 2 }, { "groupId": 295047964, "groupName": "Illustrator on Ipad: TestIllustratorOnIpad", "type": "PRODUCT_PROFILE", "adminGroupName": "_admin_Illustrator on Ipad: TestIllustratorOnIpad", "memberCount": 1, "productName": "Illustrator on Ipad", "licenseQuota": "5" }, { "groupId": 295054807, "groupName": "Photoshop: Test Photoshop Profile", "type": "PRODUCT_PROFILE", "adminGroupName": "_admin_Photoshop: Test Photoshop Profile", "memberCount": 1, "productName": "Photoshop", "licenseQuota": "5" } ] }
Currently, when a client fetches a list of groups when they have a Single App Plan, they are returned with:
Both profiles have the
productName
populated as Single App but they correspond to different products. On 20th July 2021 we will release an update to populate this field with the correct product name: