statistics.qfp.page
Operation: GET /dataservice/statistics/qfp/page
Get stats raw data
def get(
query: Optional[str] = None,
scroll_id: Optional[str] = None,
count: Optional[int] = None,
) -> Any: ...
Example:
from catalyswan.core import create_client
url = "example.com"
username = "admin"
password = "password123"
with create_client(
url=url, username=username, password=password
) as client:
client.statistics.qfp.page.get()
Operation: POST /dataservice/statistics/qfp/page
Get stats raw data
def post(
payload: Any,
scroll_id: Optional[str] = None,
count: Optional[int] = None,
) -> Any: ...
Example:
from catalyswan.core import create_client
url = "example.com"
username = "admin"
password = "password123"
with create_client(
url=url, username=username, password=password
) as client:
client.statistics.qfp.page.post()