List Product custom field enumerations

URL : /api/v1/product-custom-field-enums/

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 product custom field enumeration or related to the product custom field enumeration.

Possible filters:

  • product_custom_field

Success Response

Code : 200 OK

Content examples :

{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "value": "vv1",
            "product_custom_field": 69
        },
        ...
    ]
}

Last updated

Was this helpful?