List License Custom Fields

Show all license custom fields the requesting manager has access permissions to.

URL: /api/v1/license-custom-fields/ Method: GET

circle-info

Default pagination is 20 results per page.

Query parameters

Pagination

  • limit — Number of results to return per page. Example: limit=20

  • offset — The initial index from which to return the results. Example: offset=21

Filtering

The results can be filtered by various attributes on license custom field or related to the license custom field.

Possible filters:

  • license

Success response

Code: 200 OK

Response (application/json)
{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 78,
            "value": "23",
            "license": 1609234933166159,
            "product_custom_field": 51
        }
        ...
    ]
}

Was this helpful?