You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
filter (str): A filter statement to identify specific records to retrieve. For more information on filtering, see <a href=\"https://developer.avalara.com/avatax/filtering-in-rest/\">Filtering in REST</a>.. [optional]
828
-
top (int): If nonzero, return no more than this number of results. Used with skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records.. [optional] if omitted the server will use the default value of 10
829
-
skip (int): If nonzero, skip this number of results before returning data. Used with top to provide pagination for large datasets.. [optional] if omitted the server will use the default value of 0
832
+
filter (str): A filter statement to identify specific records to retrieve. For more information on filtering, see <a href=\"https://developer.avalara.com/avatax/filtering-in-rest/\">Filtering in REST</a>.. [optional]
833
+
top (int): If zero or greater than 1000, return at most 1000 results. Otherwise, return this number of results. Used with skip to provide pagination for large datasets.. [optional]
834
+
skip (int): If nonzero, skip this number of results before returning data. Used with top to provide pagination for large datasets.. [optional]
830
835
order_by (str): A comma separated list of sort statements in the format (fieldname) [ASC|DESC], for example id ASC.. [optional]
831
-
count (bool): When true, returns a @recordSetCount in the result set. [optional]
836
+
count (bool): If true, return the global count of elements in the collection.. [optional]
837
+
count_only (bool): If true, return ONLY the global count of elements in the collection. It only applies when count=true.. [optional]
832
838
x_correlation_id (str): Unique correlation Id in a GUID format. [optional]
833
839
x_avalara_client (str): Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) .. [optional]
834
840
_return_http_data_only (bool): response data without head status
@@ -852,7 +858,7 @@ def list_w9_forms(
852
858
async_req (bool): execute request asynchronously
853
859
854
860
Returns:
855
-
PaginatedW9FormsModel
861
+
PaginatedQueryResultModelW9FormBaseResponse
856
862
If the method is called asynchronously, returns the request
0 commit comments