List Product Custom Fields
Last updated
Was this helpful?
URL : /api/v1/product-custom-fields/
Method : GET
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 or related to the product custom field.
Possible filters:
product
Code : 200 OK
Content examples :
{
"count": 3,
"next": null,
"previous": null,
"results": [
{
"id": 66,
"product_custom_field_enums": [],
"name": "cf1",
"data_type": null,
"default_value": "1",
"description": null,
"product": 1584723961091260
}
...
]
}Last updated
Was this helpful?
Was this helpful?