List License Manager Permissions

**URL** : `/api/v1/license-manager-permissions/`

**Method** : `GET`

### Query parameters

#### Pagination

Default pagination is 20 results per page.

- `limit` - Number of results to return per page.
  - Example: `limit=20`
- `offset` - The initial index from which to return the results.
  - Example: `offset=21`

### Success Response

**Code** : `200 OK`

**Content examples** :

```json
{
    "count": 14,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 10,
            "code": "borrow_license"
        },
        {
            "id": 11,
            "code": "create_bundle_order"
        },
        {
            "id": 8,
            "code": "create_license_policy"
        },
        {
            "id": 1,
            "code": "create_order"
        },
        {
            "id": 2,
            "code": "issue_license"
        },
        {
            "id": 13,
            "code": "manage_license_oauth_clients"
        },
        {
            "id": 4,
            "code": "manage_license_users"
        },
        {
            "id": 5,
            "code": "manage_license_user_credentials"
        },
        {
            "id": 3,
            "code": "manage_managers"
        },
        {
            "id": 7,
            "code": "reset_device"
        },
        {
            "id": 6,
            "code": "reset_license"
        },
        {
            "id": 12,
            "code": "revoke_device"
        },
        {
            "id": 14,
            "code": "show_license_oauth_clients"
        },
        {
            "id": 9,
            "code": "show_license_usage_report"
        },
        ...
    ]
}

Last updated

Was this helpful?