List Product Features

URL : /api/v1/product-features/

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

Possible filters:

  • product

Success Response

Code : 200 OK

Content examples :

{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 194,
            "created_at": "2021-01-13T08:38:38Z",
            "updated_at": "2021-01-13T08:38:38Z",
            "name": "f1",
            "code": "f1",
            "is_deleted": false,
            "feature_type": "activation",
            "max_consumption": 0,
            "allow_overages": false,
            "max_overages": 0,
            "reset_consumption": false,
            "consumption_period": null,
            "metadata": {},
            "product": 1584723961091260
        },
        ...
    ]
}

Last updated

Was this helpful?