pysimplesat/src/pysimplesat/endpoints/simplesat/CustomersBulkEndpoint.py
2025-07-30 18:42:07 -05:00

32 lines
1.1 KiB
Python

from pysimplesat.endpoints.base.base_endpoint import SimpleSatEndpoint
from pysimplesat.interfaces import (
IPostable,
)
from pysimplesat.models.simplesat import CustomerBulk
from pysimplesat.types import (
JSON,
SimpleSatRequestParams,
)
class CustomersBulkEndpoint(
SimpleSatEndpoint,
IPostable[CustomerBulk, SimpleSatRequestParams],
):
def __init__(self, client, parent_endpoint=None) -> None:
SimpleSatEndpoint.__init__(self, client, "bulk", parent_endpoint=parent_endpoint)
IPostable.__init__(self, CustomerBulk)
def post(self, data: JSON | None = None, params: SimpleSatRequestParams | None = None) -> CustomerBulk:
"""
Performs a POST request against the /customers/bulk endpoint.
Parameters:
data (dict[str, Any]): The data to send in the request body.
params (dict[str, int | str]): The parameters to send in the request query string.
Returns:
Survey: The parsed response data.
"""
return self._parse_one(CustomerBulk, super()._make_request("POST", data=data, params=params).json())