Skip to content

Commit 26715bc

Browse files
25.10.1 (#29)
1 parent f29e5cb commit 26715bc

24 files changed

+7079
-191
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ Class | Method | HTTP request | Description
155155
*FormsW9Api* | [**createW9Form**](docs/A1099/V2/FormsW9Api.md#createw9form) | **POST** /w9/forms | Create a W9/W4/W8 form
156156
*FormsW9Api* | [**deleteW9Form**](docs/A1099/V2/FormsW9Api.md#deletew9form) | **DELETE** /w9/forms/{id} | Delete a W9/W4/W8 form
157157
*FormsW9Api* | [**getW9Form**](docs/A1099/V2/FormsW9Api.md#getw9form) | **GET** /w9/forms/{id} | Retrieve a W9/W4/W8 form
158+
*FormsW9Api* | [**getW9FormPdf**](docs/A1099/V2/FormsW9Api.md#getw9formpdf) | **GET** /w9/forms/{id}/pdf | Download the PDF for a W9/W4/W8 form.
158159
*FormsW9Api* | [**listW9Forms**](docs/A1099/V2/FormsW9Api.md#listw9forms) | **GET** /w9/forms | List W9/W4/W8 forms
159160
*FormsW9Api* | [**sendW9FormEmail**](docs/A1099/V2/FormsW9Api.md#sendw9formemail) | **POST** /w9/forms/{id}/$send-email | Send an email to the vendor/payee requesting they fill out a W9/W4/W8 form
160161
*FormsW9Api* | [**updateW9Form**](docs/A1099/V2/FormsW9Api.md#updatew9form) | **PUT** /w9/forms/{id} | Update a W9/W4/W8 form

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 = "6df88900-1e19-42cb-b5a0-fc2442681327"; // String | Unique correlation Id in a GUID format
52+
String xCorrelationId = "e059925d-91f6-4c34-9bcd-2a0e997dd8fa"; // 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 = "33931030-471d-4055-be36-8dcc3c48c11d"; // String | Unique correlation Id in a GUID format
139+
String xCorrelationId = "b01f9bff-5e8c-49d6-8c9b-44892e578dc5"; // 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 = "cf08fb7e-1d1c-43e2-a2b8-dfe7be26d43f"; // String | Unique correlation Id in a GUID format
231+
String xCorrelationId = "9654708e-0675-4a73-a0fa-5b8016bb2175"; // 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 = "f29e8436-2c45-494b-b537-a22ae251829e"; // String | Unique correlation Id in a GUID format
324+
String xCorrelationId = "c9747d06-85d9-42ed-a7d2-1438a48a4d33"; // 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 = "595ee1c9-2b9e-4d5a-8aa6-661b1fe4669f"; // String | Unique correlation Id in a GUID format
412+
String xCorrelationId = "0227fcc3-16c4-439b-a4ea-28c316d311ef"; // 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 {

0 commit comments

Comments
 (0)