## Steps to reproduce following coreapi call to my book resource with `LimitOffsetPagination` ```python client.action(document, ['book', 'list'], params={ 'offset': 0, 'limit': 20, }) ``` ## Expected behavior in v3.6.2 works well: ```json { "count": 123, "next": "https://.../api/book/?offset=20&limit=20", "previous": "https://.../api/book/?offset=0&limit=20", "results": ["..."] } ``` ## Actual behavior in v3.6.3 it causes an exception: ``` ParameterError: {'offset': 'Unknown parameter.', 'limit': 'Unknown parameter.'} ``` related to pr #4998 which introduced this breaking change (bug).