@@ -43,9 +43,9 @@ def with_streaming_response(self) -> IndividualsWithStreamingResponse:
4343 def retrieve_many (
4444 self ,
4545 * ,
46+ requests : Iterable [individual_retrieve_many_params .Request ],
4647 entity_ids : SequenceNotStr [str ] | Omit = omit ,
4748 options : Optional [individual_retrieve_many_params .Options ] | Omit = omit ,
48- requests : Iterable [individual_retrieve_many_params .Request ] | Omit = omit ,
4949 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
5050 # The extra values given here take precedence over values defined on the client or passed to this method.
5151 extra_headers : Headers | None = None ,
@@ -57,6 +57,8 @@ def retrieve_many(
5757 Read individual data, excluding income and employment data
5858
5959 Args:
60+ requests: The array of batch requests. Maximum 10000 items per request.
61+
6062 entity_ids: The entity IDs to specify which entities' data to access.
6163
6264 extra_headers: Send extra headers
@@ -72,8 +74,8 @@ def retrieve_many(
7274 page = SyncResponsesPage [IndividualResponse ],
7375 body = maybe_transform (
7476 {
75- "options" : options ,
7677 "requests" : requests ,
78+ "options" : options ,
7779 },
7880 individual_retrieve_many_params .IndividualRetrieveManyParams ,
7981 ),
@@ -115,9 +117,9 @@ def with_streaming_response(self) -> AsyncIndividualsWithStreamingResponse:
115117 def retrieve_many (
116118 self ,
117119 * ,
120+ requests : Iterable [individual_retrieve_many_params .Request ],
118121 entity_ids : SequenceNotStr [str ] | Omit = omit ,
119122 options : Optional [individual_retrieve_many_params .Options ] | Omit = omit ,
120- requests : Iterable [individual_retrieve_many_params .Request ] | Omit = omit ,
121123 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
122124 # The extra values given here take precedence over values defined on the client or passed to this method.
123125 extra_headers : Headers | None = None ,
@@ -129,6 +131,8 @@ def retrieve_many(
129131 Read individual data, excluding income and employment data
130132
131133 Args:
134+ requests: The array of batch requests. Maximum 10000 items per request.
135+
132136 entity_ids: The entity IDs to specify which entities' data to access.
133137
134138 extra_headers: Send extra headers
@@ -144,8 +148,8 @@ def retrieve_many(
144148 page = AsyncResponsesPage [IndividualResponse ],
145149 body = maybe_transform (
146150 {
147- "options" : options ,
148151 "requests" : requests ,
152+ "options" : options ,
149153 },
150154 individual_retrieve_many_params .IndividualRetrieveManyParams ,
151155 ),
0 commit comments