List License Custom Fields

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

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

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

Content examples :

{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 78,
            "value": "23",
            "license": 1609234933166159,
            "product_custom_field": 51
        }
        ...
    ]
}

Last updated

Was this helpful?