adobe-apiplatform / umapi-documentation

Documentation Development for User Management API
https://adobe-apiplatform.github.io/umapi-documentation/
MIT License
13 stars 16 forks source link

Update ProductName returned for Single App Plans #54

Closed lesavage closed 3 years ago

lesavage commented 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:

{
    "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"
        }
    ]
}