Update License Manager Permissions

Updates permissions for a single license manager if the requesting manager has access permissions to it.

URL: /api/v1/license-users/{id}/update_lm_permissions/ Method: POST

Parameters

  • permission_ids — List of License Manager Permission id integers

  • products — List of objects:

    • product_id — Integer

    • num_of_licenses — Integer or null

  • license_template_ids — List of License Template id integers

  • customer_account_ids — List of Customer Account id integers

Data example

request.json
{
    "permission_ids": [
        1,
        2,
        4,
        5
    ],
    "products": [
        {
            "product_id": 1678966523782857,
            "num_of_licenses": 19
        },
        {
            "product_id": 1584723961091260,
            "num_of_licenses": null
        }
    ],
    "license_template_ids": [
        754,
        10,
        719
    ],
    "customer_account_ids": [
        834,
        837
    ]
}

Success Response

Code: 200 OK

Was this helpful?