Skip to content

Commit f29e5cb

Browse files
25.10.0 (#28)
1 parent 7e5125f commit f29e5cb

29 files changed

+1193
-98
lines changed

docs/A1099/V2/CompaniesW9Api.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class Example {
4949

5050
CompaniesW9Api apiInstance = new CompaniesW9Api(apiClient);
5151
String avalaraVersion = "2.0.0"; // String | API version
52-
String xCorrelationId = "a607ad38-398e-43d2-918d-d809e43dbd6b"; // String | Unique correlation Id in a GUID format
52+
String xCorrelationId = "6df88900-1e19-42cb-b5a0-fc2442681327"; // String | Unique correlation Id in a GUID format
5353
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
5454
CompanyRequest companyRequest = new CompanyRequest(); // CompanyRequest | The company to create
5555
try {
@@ -136,7 +136,7 @@ public class Example {
136136
CompaniesW9Api apiInstance = new CompaniesW9Api(apiClient);
137137
String id = "id_example"; // String | The company to delete
138138
String avalaraVersion = "2.0.0"; // String | API version
139-
String xCorrelationId = "54780530-dee1-472f-8626-a1ef1d6f3bfa"; // String | Unique correlation Id in a GUID format
139+
String xCorrelationId = "33931030-471d-4055-be36-8dcc3c48c11d"; // String | Unique correlation Id in a GUID format
140140
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
141141
try {
142142
apiInstance.deleteCompany(id, avalaraVersion, xCorrelationId, xAvalaraClient);
@@ -228,7 +228,7 @@ public class Example {
228228
String $orderBy = "$orderBy_example"; // String | A comma separated list of sort statements in the format (fieldname) [ASC|DESC], for example id ASC.
229229
Boolean count = true; // Boolean | If true, return the global count of elements in the collection.
230230
Boolean countOnly = true; // Boolean | If true, return ONLY the global count of elements in the collection. It only applies when count=true.
231-
String xCorrelationId = "7ee6e06e-ae28-4317-9053-d966f0b24a94"; // String | Unique correlation Id in a GUID format
231+
String xCorrelationId = "cf08fb7e-1d1c-43e2-a2b8-dfe7be26d43f"; // String | Unique correlation Id in a GUID format
232232
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
233233
try {
234234
PaginatedQueryResultModelCompanyResponse result = apiInstance.getCompanies(avalaraVersion, $filter, $top, $skip, $orderBy, count, countOnly, xCorrelationId, xAvalaraClient);
@@ -321,7 +321,7 @@ public class Example {
321321
CompaniesW9Api apiInstance = new CompaniesW9Api(apiClient);
322322
String id = "id_example"; // String | Id of the company
323323
String avalaraVersion = "2.0.0"; // String | API version
324-
String xCorrelationId = "c2254966-bcae-4b32-a7b4-67f0518ca748"; // String | Unique correlation Id in a GUID format
324+
String xCorrelationId = "f29e8436-2c45-494b-b537-a22ae251829e"; // String | Unique correlation Id in a GUID format
325325
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
326326
try {
327327
CompanyResponse result = apiInstance.getCompany(id, avalaraVersion, xCorrelationId, xAvalaraClient);
@@ -409,7 +409,7 @@ public class Example {
409409
CompaniesW9Api apiInstance = new CompaniesW9Api(apiClient);
410410
String id = "id_example"; // String | The ID of the company to update
411411
String avalaraVersion = "2.0.0"; // String | API version
412-
String xCorrelationId = "b730ea19-59f4-4cc8-8ef0-94a9d4637a6a"; // String | Unique correlation Id in a GUID format
412+
String xCorrelationId = "595ee1c9-2b9e-4d5a-8aa6-661b1fe4669f"; // String | Unique correlation Id in a GUID format
413413
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
414414
CompanyRequest companyRequest = new CompanyRequest(); // CompanyRequest | The updated company data
415415
try {

docs/A1099/V2/CreateW9FormRequest.md

Lines changed: 100 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
|**type** | [**TypeEnum**](#TypeEnum) | The form type. | [optional] [readonly] |
1111
|**name** | **String** | The name of the individual or entity associated with the form. | |
1212
|**businessName** | **String** | The name of the business associated with the form. | [optional] |
13-
|**businessClassification** | **String** | The classification of the business. Available values: - Individual: Individual/sole proprietor - C Corporation: C Corporation - S Corporation: S Corporation - Partnership: Partnership - Trust/estate: Trust/estate - LLC-C: Limited liability company (C Corporation) - LLC-S: Limited liability company (S Corporation) - LLC-P: Limited liability company (Partnership) - Other: Other (requires BusinessOther field to be populated) | |
13+
|**businessClassification** | [**BusinessClassificationEnum**](#BusinessClassificationEnum) | The classification of the business. Available values: - Individual: Individual/sole proprietor - C Corporation: C Corporation - S Corporation: S Corporation - Partnership: Partnership - Trust/estate: Trust/estate - LLC-C: Limited liability company (C Corporation) - LLC-S: Limited liability company (S Corporation) - LLC-P: Limited liability company (Partnership) - Other: Other (requires BusinessOther field to be populated) | |
1414
|**businessOther** | **String** | The classification description when \"businessClassification\" is \"Other\". | [optional] |
1515
|**foreignPartnerOwnerOrBeneficiary** | **Boolean** | Indicates whether the individual is a foreign partner, owner, or beneficiary. | [optional] |
16-
|**exemptPayeeCode** | **String** | The exempt payee code. | [optional] |
17-
|**exemptFatcaCode** | **String** | The exemption from FATCA reporting code. | [optional] |
16+
|**exemptPayeeCode** | **String** | The exempt payee code. Allowed values (1–13): - 1 — Organization exempt under §501(a) or IRA; custodial account under §403(b)(7) - 2 — U.S. government or its agencies/instrumentalities - 3 — U.S. state, DC, U.S. territory/possession, or their political subdivisions/agencies/instrumentalities - 4 — Foreign government or its political subdivisions/agencies/instrumentalities - 5 — Corporation - 6 — Dealer in securities or commodities required to register in the U.S., DC, or U.S. territory/possession - 7 — Futures commission merchant registered with the CFTC - 8 — Real estate investment trust (REIT) - 9 — Entity registered at all times during the tax year under the Investment Company Act of 1940 - 10 — Common trust fund operated by a bank under §584(a) - 11 — Financial institution (see §581) - 12 — Broker (nominee/custodian) - 13 — Trust exempt under §664 or described in §4947 | [optional] |
17+
|**exemptFatcaCode** | **String** | The exemption from FATCA reporting code. Allowed values (A–M): - A — Tax‑exempt organization under §501(a) or IRA (§7701(a)(37)) - B — U.S. government or any of its agencies/instrumentalities - C — U.S. state, DC, territory/possession, or their political subdivisions/instrumentalities - D — Corporation whose stock is regularly traded on an established securities market - E — Corporation that is a member of the same expanded affiliated group as a D corporation - F — Registered dealer in securities/commodities/derivatives - G — REIT (Real Estate Investment Trust) - H — Regulated investment company (§851) or entity registered all year under the Investment Company Act of 1940 - I — Common trust fund (§584(a)) - J — Bank (§581) - K — Broker - L — Charitable remainder trust (§664) or trust described in §4947(a)(1) - M — Trust under §403(b) plan or §457(g) plan | [optional] |
1818
|**foreignCountryIndicator** | **Boolean** | Indicates whether the individual or entity is in a foreign country. | [optional] |
1919
|**address** | **String** | The address of the employee. Required unless exempt. | |
2020
|**foreignAddress** | **String** | The foreign address of the individual or entity. | [optional] |
2121
|**city** | **String** | The city of residence of the employee. Required unless exempt. | |
22-
|**state** | **String** | The state of residence of the employee. Required unless exempt. | |
22+
|**state** | [**StateEnum**](#StateEnum) | The state of residence of the employee. Required unless exempt. | |
2323
|**zip** | **String** | The ZIP code of residence of the employee. Required unless exempt. | |
2424
|**accountNumber** | **String** | The account number associated with the form. | [optional] |
2525
|**tinType** | **String** | Tax Identification Number (TIN) type. | |
@@ -168,7 +168,7 @@
168168
|**employeeMiddleName** | **String** | The middle name of the employee. | [optional] |
169169
|**employeeLastName** | **String** | The last name of the employee. | |
170170
|**employeeNameSuffix** | **String** | The name suffix of the employee. | [optional] |
171-
|**maritalStatus** | **String** | The marital status of the employee. Required unless exempt. Available values: - Single: Single or Married filing separately - Married: Married filing jointly or qualifying surviving spouse - MarriedBut: Head of household. Check only if you're unmarried and pay more than half the costs of keeping up a home for yourself and a qualifying individual. | [optional] |
171+
|**maritalStatus** | [**MaritalStatusEnum**](#MaritalStatusEnum) | The marital status of the employee. Required unless exempt. Available values: - Single: Single or Married filing separately - Married: Married filing jointly or qualifying surviving spouse - MarriedBut: Head of household. Check only if you're unmarried and pay more than half the costs of keeping up a home for yourself and a qualifying individual. | [optional] |
172172
|**lastNameDiffers** | **Boolean** | Indicates whether the last name differs from prior records. | [optional] |
173173
|**numAllowances** | **Integer** | The number of allowances claimed by the employee. | [optional] |
174174
|**otherDependents** | **Integer** | The number of dependents other than allowances. | [optional] |
@@ -192,3 +192,98 @@
192192

193193

194194

195+
## Enum: BusinessClassificationEnum
196+
197+
| Name | Value |
198+
|---- | -----|
199+
| INDIVIDUAL | "Individual" |
200+
| C_CORPORATION | "CCorporation" |
201+
| S_CORPORATION | "SCorporation" |
202+
| PARTNERSHIP | "Partnership" |
203+
| TRUST_ESTATE | "TrustEstate" |
204+
| LLC_C | "LlcC" |
205+
| LLC_S | "LlcS" |
206+
| LLC_P | "LlcP" |
207+
| OTHER | "Other" |
208+
209+
210+
211+
## Enum: StateEnum
212+
213+
| Name | Value |
214+
|---- | -----|
215+
| AA | "AA" |
216+
| AE | "AE" |
217+
| AK | "AK" |
218+
| AL | "AL" |
219+
| AP | "AP" |
220+
| AR | "AR" |
221+
| AS | "AS" |
222+
| AZ | "AZ" |
223+
| CA | "CA" |
224+
| CO | "CO" |
225+
| CT | "CT" |
226+
| DC | "DC" |
227+
| DE | "DE" |
228+
| FL | "FL" |
229+
| FM | "FM" |
230+
| GA | "GA" |
231+
| GU | "GU" |
232+
| HI | "HI" |
233+
| IA | "IA" |
234+
| ID | "ID" |
235+
| IL | "IL" |
236+
| IN | "IN" |
237+
| KS | "KS" |
238+
| KY | "KY" |
239+
| LA | "LA" |
240+
| MA | "MA" |
241+
| MD | "MD" |
242+
| ME | "ME" |
243+
| MH | "MH" |
244+
| MI | "MI" |
245+
| MN | "MN" |
246+
| MO | "MO" |
247+
| MP | "MP" |
248+
| MS | "MS" |
249+
| MT | "MT" |
250+
| NC | "NC" |
251+
| ND | "ND" |
252+
| NE | "NE" |
253+
| NH | "NH" |
254+
| NJ | "NJ" |
255+
| NM | "NM" |
256+
| NV | "NV" |
257+
| NY | "NY" |
258+
| OH | "OH" |
259+
| OK | "OK" |
260+
| OR | "OR" |
261+
| PA | "PA" |
262+
| PR | "PR" |
263+
| PW | "PW" |
264+
| RI | "RI" |
265+
| SC | "SC" |
266+
| SD | "SD" |
267+
| TN | "TN" |
268+
| TX | "TX" |
269+
| UT | "UT" |
270+
| VA | "VA" |
271+
| VI | "VI" |
272+
| VT | "VT" |
273+
| WA | "WA" |
274+
| WI | "WI" |
275+
| WV | "WV" |
276+
| WY | "WY" |
277+
278+
279+
280+
## Enum: MaritalStatusEnum
281+
282+
| Name | Value |
283+
|---- | -----|
284+
| SINGLE | "Single" |
285+
| MARRIED | "Married" |
286+
| MARRIED_BUT | "MarriedBut" |
287+
288+
289+

docs/A1099/V2/ErrorResponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**title** | **String** | | [optional] |
11-
|**errors** | [**List<ErrorResponseItem>**](ErrorResponseItem.md) | | [optional] |
10+
|**title** | **String** | A summary of the problem type. | [optional] |
11+
|**errors** | [**List<ErrorResponseItem>**](ErrorResponseItem.md) | A list of errors detailing the problem type. | [optional] |
1212

1313

1414

docs/A1099/V2/ErrorResponseItem.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**type** | **String** | | [optional] |
11-
|**detail** | **String** | | [optional] |
10+
|**type** | **String** | An identifier for this occurrence of the problem. It is the name of a request's field when specific to that field. Otherwise, for other types of errors, its value is empty. | [optional] |
11+
|**detail** | **String** | An explanation specific to this occurrence of the problem. | [optional] |
1212

1313

1414

docs/A1099/V2/Forms1099Api.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class Example {
5252
Forms1099Api apiInstance = new Forms1099Api(apiClient);
5353
String avalaraVersion = "2.0.0"; // String | API version
5454
Boolean dryRun = false; // Boolean | defaults to false. If true, it will NOT change the DB. It will just return a report of what would've have been changed in the DB
55-
String xCorrelationId = "5ef65de0-c394-4aa2-b249-d8bfcbe9b23a"; // String | Unique correlation Id in a GUID format
55+
String xCorrelationId = "eec0b095-bfa8-4786-bbad-3f20a4b61ac2"; // String | Unique correlation Id in a GUID format
5656
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
5757
Form1099ListRequest form1099ListRequest = new Form1099ListRequest(); // Form1099ListRequest |
5858
try {
@@ -141,7 +141,7 @@ public class Example {
141141

142142
Forms1099Api apiInstance = new Forms1099Api(apiClient);
143143
String avalaraVersion = "2.0.0"; // String | API version
144-
String xCorrelationId = "5b55b569-4e1e-44d3-920c-65153461c426"; // String | Unique correlation Id in a GUID format
144+
String xCorrelationId = "ea80e3d4-6198-4297-9fff-4b12b5d270a0"; // String | Unique correlation Id in a GUID format
145145
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
146146
Get1099Form200Response get1099Form200Response = new Get1099Form200Response(); // Get1099Form200Response |
147147
try {
@@ -229,7 +229,7 @@ public class Example {
229229
Forms1099Api apiInstance = new Forms1099Api(apiClient);
230230
String id = "id_example"; // String | The unique identifier of the desired form to delete.
231231
String avalaraVersion = "2.0.0"; // String | API version
232-
String xCorrelationId = "e82ee14f-7146-41a5-b856-28f403d65e29"; // String | Unique correlation Id in a GUID format
232+
String xCorrelationId = "6f61d545-12cb-445a-b60c-bd21c3f78ae3"; // String | Unique correlation Id in a GUID format
233233
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
234234
try {
235235
apiInstance.delete1099Form(id, avalaraVersion, xCorrelationId, xAvalaraClient);
@@ -317,7 +317,7 @@ public class Example {
317317
Forms1099Api apiInstance = new Forms1099Api(apiClient);
318318
String id = "id_example"; // String |
319319
String avalaraVersion = "2.0.0"; // String | API version
320-
String xCorrelationId = "f5198e72-fc87-4a4d-a09a-b2aa6cf70c38"; // String | Unique correlation Id in a GUID format
320+
String xCorrelationId = "3dda6df9-8f00-4ac0-8eab-0e56263c2895"; // String | Unique correlation Id in a GUID format
321321
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
322322
try {
323323
Get1099Form200Response result = apiInstance.get1099Form(id, avalaraVersion, xCorrelationId, xAvalaraClient);
@@ -406,7 +406,7 @@ public class Example {
406406
String id = "id_example"; // String | The ID of the form
407407
String avalaraVersion = "2.0.0"; // String | API version
408408
Boolean markEdelivered = true; // Boolean | Optional boolean that if set indicates that the form should be marked as having been successfully edelivered
409-
String xCorrelationId = "7fdfd0b2-cebf-4f25-8a65-6dd03811e77d"; // String | Unique correlation Id in a GUID format
409+
String xCorrelationId = "83471033-6587-4425-a03e-1057de8d14cf"; // String | Unique correlation Id in a GUID format
410410
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
411411
try {
412412
File result = apiInstance.get1099FormPdf(id, avalaraVersion, markEdelivered, xCorrelationId, xAvalaraClient);
@@ -500,7 +500,7 @@ public class Example {
500500
String $orderBy = "$orderBy_example"; // String | A comma separated list of sort statements in the format (fieldname) [ASC|DESC], for example id ASC.
501501
Boolean count = true; // Boolean | If true, return the global count of elements in the collection.
502502
Boolean countOnly = true; // Boolean | If true, return ONLY the global count of elements in the collection. It only applies when count=true.
503-
String xCorrelationId = "97f7596c-99c0-4879-b47c-57df572a32c9"; // String | Unique correlation Id in a GUID format
503+
String xCorrelationId = "9cd2b713-72ed-419c-8c1f-4aeef9f6b0d4"; // String | Unique correlation Id in a GUID format
504504
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
505505
try {
506506
PaginatedQueryResultModelForm1099Base result = apiInstance.list1099Forms(avalaraVersion, $filter, $top, $skip, $orderBy, count, countOnly, xCorrelationId, xAvalaraClient);
@@ -593,7 +593,7 @@ public class Example {
593593
Forms1099Api apiInstance = new Forms1099Api(apiClient);
594594
String id = "id_example"; // String |
595595
String avalaraVersion = "2.0.0"; // String | API version
596-
String xCorrelationId = "560aa857-d5ba-484b-9375-a14e9e57d7a8"; // String | Unique correlation Id in a GUID format
596+
String xCorrelationId = "b0bb9771-ffdf-4884-bac3-7cf00bf7c745"; // String | Unique correlation Id in a GUID format
597597
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | 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/) .
598598
Get1099Form200Response get1099Form200Response = new Get1099Form200Response(); // Get1099Form200Response |
599599
try {

0 commit comments

Comments
 (0)