page-size (max 100) to tune payload sizes for your client.status filter to list only active users.curl --location 'https://mock.apidog.com/m1/1332245-0-default/users?page=1&page-size=20&status=active' \
--header 'Authorization: Bearer <token>'{
"data": [
{
"userId": "usr_1a2b3c4d",
"email": "john.doe@example.com",
"firstName": "John",
"lastName": "Doe",
"status": "active",
"createdAt": "2024-01-15T10:30:00Z"
},
{
"userId": "usr_5e6f7g8h",
"email": "jane.smith@example.com",
"firstName": "Jane",
"lastName": "Smith",
"status": "active",
"createdAt": "2024-01-16T14:20:00Z"
}
],
"pagination": {
"page": 1,
"pageSize": 20,
"totalItems": 2,
"totalPages": 1
}
}