-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Description
The pagination functionality is now in TestRail production API.
For instance, get_plan API used to return in older TestRail:
{
"plans": [
{
"id": 505717,
...
Now in TestRail production (on cloud),
{
"offset": 0,
"limit": 250,
"size": 250,
"_links": {
"next": "/api/v2/get_plans/4&limit=250&offset=250",
"prev": null
},
"plans": [
{
"id": 505717,
...
How do you prefer to handle this change? We could introduce a class of ReceivableTestPlans that is similar to SendableTestPlans that the library already has.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels