Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions openapi-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1609,8 +1609,8 @@ paths:
get:
tags:
- Fax
summary: 'List Fax Files'
description: 'Returns list of fax files'
summary: 'Download Fax Files'
description: 'Downloads fax files'
operationId: faxFiles
parameters:
-
Expand Down Expand Up @@ -1812,7 +1812,7 @@ paths:
tags:
- 'Fax Line'
summary: 'Get Available Fax Line Area Codes'
description: 'Returns a response with the area codes available for a given state/provice and city.'
description: 'Returns a response with the area codes available for a given state/province and city.'
operationId: faxLineAreaCodeGet
parameters:
-
Expand Down
6 changes: 3 additions & 3 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1609,8 +1609,8 @@ paths:
get:
tags:
- Fax
summary: 'List Fax Files'
description: 'Returns list of fax files'
summary: 'Download Fax Files'
description: 'Downloads fax files'
operationId: faxFiles
parameters:
-
Expand Down Expand Up @@ -1812,7 +1812,7 @@ paths:
tags:
- 'Fax Line'
summary: 'Get Available Fax Line Area Codes'
description: 'Returns a response with the area codes available for a given state/provice and city.'
description: 'Returns a response with the area codes available for a given state/province and city.'
operationId: faxLineAreaCodeGet
parameters:
-
Expand Down
2 changes: 1 addition & 1 deletion sdks/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Class | Method | HTTP request | Description
*EmbeddedApi* | [**EmbeddedEditUrl**](docs/EmbeddedApi.md#embeddedediturl) | **POST** /embedded/edit_url/{template_id} | Get Embedded Template Edit URL
*EmbeddedApi* | [**EmbeddedSignUrl**](docs/EmbeddedApi.md#embeddedsignurl) | **GET** /embedded/sign_url/{signature_id} | Get Embedded Sign URL
*FaxApi* | [**FaxDelete**](docs/FaxApi.md#faxdelete) | **DELETE** /fax/{fax_id} | Delete Fax
*FaxApi* | [**FaxFiles**](docs/FaxApi.md#faxfiles) | **GET** /fax/files/{fax_id} | List Fax Files
*FaxApi* | [**FaxFiles**](docs/FaxApi.md#faxfiles) | **GET** /fax/files/{fax_id} | Download Fax Files
*FaxApi* | [**FaxGet**](docs/FaxApi.md#faxget) | **GET** /fax/{fax_id} | Get Fax
*FaxApi* | [**FaxList**](docs/FaxApi.md#faxlist) | **GET** /fax/list | Lists Faxes
*FaxApi* | [**FaxSend**](docs/FaxApi.md#faxsend) | **POST** /fax/send | Send Fax
Expand Down
8 changes: 4 additions & 4 deletions sdks/dotnet/docs/FaxApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All URIs are relative to *https://api.hellosign.com/v3*
| Method | HTTP request | Description |
|--------|--------------|-------------|
| [**FaxDelete**](FaxApi.md#faxdelete) | **DELETE** /fax/{fax_id} | Delete Fax |
| [**FaxFiles**](FaxApi.md#faxfiles) | **GET** /fax/files/{fax_id} | List Fax Files |
| [**FaxFiles**](FaxApi.md#faxfiles) | **GET** /fax/files/{fax_id} | Download Fax Files |
| [**FaxGet**](FaxApi.md#faxget) | **GET** /fax/{fax_id} | Get Fax |
| [**FaxList**](FaxApi.md#faxlist) | **GET** /fax/list | Lists Faxes |
| [**FaxSend**](FaxApi.md#faxsend) | **POST** /fax/send | Send Fax |
Expand Down Expand Up @@ -100,9 +100,9 @@ void (empty response body)
# **FaxFiles**
> System.IO.Stream FaxFiles (string faxId)

List Fax Files
Download Fax Files

Returns list of fax files
Downloads fax files

### Example
```csharp
Expand Down Expand Up @@ -149,7 +149,7 @@ This returns an ApiResponse object which contains the response data, status code
```csharp
try
{
// List Fax Files
// Download Fax Files
ApiResponse<System.IO.Stream> response = apiInstance.FaxFilesWithHttpInfo(faxId);
Debug.Write("Status Code: " + response.StatusCode);
Debug.Write("Response Headers: " + response.Headers);
Expand Down
2 changes: 1 addition & 1 deletion sdks/dotnet/docs/FaxLineApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ catch (ApiException e)

Get Available Fax Line Area Codes

Returns a response with the area codes available for a given state/provice and city.
Returns a response with the area codes available for a given state/province and city.

### Example
```csharp
Expand Down
24 changes: 12 additions & 12 deletions sdks/dotnet/src/Dropbox.Sign/Api/FaxApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ public interface IFaxApiSync : IApiAccessor
/// <returns>ApiResponse of Object(void)</returns>
ApiResponse<Object> FaxDeleteWithHttpInfo(string faxId, int operationIndex = 0);
/// <summary>
/// List Fax Files
/// Download Fax Files
/// </summary>
/// <remarks>
/// Returns list of fax files
/// Downloads fax files
/// </remarks>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="faxId">Fax ID</param>
Expand All @@ -63,10 +63,10 @@ public interface IFaxApiSync : IApiAccessor
System.IO.Stream FaxFiles(string faxId, int operationIndex = 0);

/// <summary>
/// List Fax Files
/// Download Fax Files
/// </summary>
/// <remarks>
/// Returns list of fax files
/// Downloads fax files
/// </remarks>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="faxId">Fax ID</param>
Expand Down Expand Up @@ -179,10 +179,10 @@ public interface IFaxApiAsync : IApiAccessor
/// <returns>Task of ApiResponse</returns>
System.Threading.Tasks.Task<ApiResponse<Object>> FaxDeleteWithHttpInfoAsync(string faxId, int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
/// <summary>
/// List Fax Files
/// Download Fax Files
/// </summary>
/// <remarks>
/// Returns list of fax files
/// Downloads fax files
/// </remarks>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="faxId">Fax ID</param>
Expand All @@ -192,10 +192,10 @@ public interface IFaxApiAsync : IApiAccessor
System.Threading.Tasks.Task<System.IO.Stream> FaxFilesAsync(string faxId, int operationIndex = 0, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));

/// <summary>
/// List Fax Files
/// Download Fax Files
/// </summary>
/// <remarks>
/// Returns list of fax files
/// Downloads fax files
/// </remarks>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="faxId">Fax ID</param>
Expand Down Expand Up @@ -555,7 +555,7 @@ public Dropbox.Sign.Client.ApiResponse<Object> FaxDeleteWithHttpInfo(string faxI
}

/// <summary>
/// List Fax Files Returns list of fax files
/// Download Fax Files Downloads fax files
/// </summary>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="faxId">Fax ID</param>
Expand All @@ -568,7 +568,7 @@ public System.IO.Stream FaxFiles(string faxId, int operationIndex = 0)
}

/// <summary>
/// List Fax Files Returns list of fax files
/// Download Fax Files Downloads fax files
/// </summary>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="faxId">Fax ID</param>
Expand Down Expand Up @@ -632,7 +632,7 @@ public System.IO.Stream FaxFiles(string faxId, int operationIndex = 0)
}

/// <summary>
/// List Fax Files Returns list of fax files
/// Download Fax Files Downloads fax files
/// </summary>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="faxId">Fax ID</param>
Expand All @@ -646,7 +646,7 @@ public System.IO.Stream FaxFiles(string faxId, int operationIndex = 0)
}

/// <summary>
/// List Fax Files Returns list of fax files
/// Download Fax Files Downloads fax files
/// </summary>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="faxId">Fax ID</param>
Expand Down
16 changes: 8 additions & 8 deletions sdks/dotnet/src/Dropbox.Sign/Api/FaxLineApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public interface IFaxLineApiSync : IApiAccessor
/// Get Available Fax Line Area Codes
/// </summary>
/// <remarks>
/// Returns a response with the area codes available for a given state/provice and city.
/// Returns a response with the area codes available for a given state/province and city.
/// </remarks>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="country">Filter area codes by country.</param>
Expand All @@ -69,7 +69,7 @@ public interface IFaxLineApiSync : IApiAccessor
/// Get Available Fax Line Area Codes
/// </summary>
/// <remarks>
/// Returns a response with the area codes available for a given state/provice and city.
/// Returns a response with the area codes available for a given state/province and city.
/// </remarks>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="country">Filter area codes by country.</param>
Expand Down Expand Up @@ -238,7 +238,7 @@ public interface IFaxLineApiAsync : IApiAccessor
/// Get Available Fax Line Area Codes
/// </summary>
/// <remarks>
/// Returns a response with the area codes available for a given state/provice and city.
/// Returns a response with the area codes available for a given state/province and city.
/// </remarks>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="country">Filter area codes by country.</param>
Expand All @@ -254,7 +254,7 @@ public interface IFaxLineApiAsync : IApiAccessor
/// Get Available Fax Line Area Codes
/// </summary>
/// <remarks>
/// Returns a response with the area codes available for a given state/provice and city.
/// Returns a response with the area codes available for a given state/province and city.
/// </remarks>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="country">Filter area codes by country.</param>
Expand Down Expand Up @@ -689,7 +689,7 @@ public Dropbox.Sign.Client.ApiResponse<FaxLineResponse> FaxLineAddUserWithHttpIn
}

/// <summary>
/// Get Available Fax Line Area Codes Returns a response with the area codes available for a given state/provice and city.
/// Get Available Fax Line Area Codes Returns a response with the area codes available for a given state/province and city.
/// </summary>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="country">Filter area codes by country.</param>
Expand All @@ -705,7 +705,7 @@ public Dropbox.Sign.Client.ApiResponse<FaxLineResponse> FaxLineAddUserWithHttpIn
}

/// <summary>
/// Get Available Fax Line Area Codes Returns a response with the area codes available for a given state/provice and city.
/// Get Available Fax Line Area Codes Returns a response with the area codes available for a given state/province and city.
/// </summary>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="country">Filter area codes by country.</param>
Expand Down Expand Up @@ -783,7 +783,7 @@ public Dropbox.Sign.Client.ApiResponse<FaxLineResponse> FaxLineAddUserWithHttpIn
}

/// <summary>
/// Get Available Fax Line Area Codes Returns a response with the area codes available for a given state/provice and city.
/// Get Available Fax Line Area Codes Returns a response with the area codes available for a given state/province and city.
/// </summary>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="country">Filter area codes by country.</param>
Expand All @@ -800,7 +800,7 @@ public Dropbox.Sign.Client.ApiResponse<FaxLineResponse> FaxLineAddUserWithHttpIn
}

/// <summary>
/// Get Available Fax Line Area Codes Returns a response with the area codes available for a given state/provice and city.
/// Get Available Fax Line Area Codes Returns a response with the area codes available for a given state/province and city.
/// </summary>
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
/// <param name="country">Filter area codes by country.</param>
Expand Down
2 changes: 1 addition & 1 deletion sdks/java-v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Class | Method | HTTP request | Description
*EmbeddedApi* | [**embeddedEditUrl**](docs/EmbeddedApi.md#embeddedEditUrl) | **POST** /embedded/edit_url/{template_id} | Get Embedded Template Edit URL
*EmbeddedApi* | [**embeddedSignUrl**](docs/EmbeddedApi.md#embeddedSignUrl) | **GET** /embedded/sign_url/{signature_id} | Get Embedded Sign URL
*FaxApi* | [**faxDelete**](docs/FaxApi.md#faxDelete) | **DELETE** /fax/{fax_id} | Delete Fax
*FaxApi* | [**faxFiles**](docs/FaxApi.md#faxFiles) | **GET** /fax/files/{fax_id} | List Fax Files
*FaxApi* | [**faxFiles**](docs/FaxApi.md#faxFiles) | **GET** /fax/files/{fax_id} | Download Fax Files
*FaxApi* | [**faxGet**](docs/FaxApi.md#faxGet) | **GET** /fax/{fax_id} | Get Fax
*FaxApi* | [**faxList**](docs/FaxApi.md#faxList) | **GET** /fax/list | Lists Faxes
*FaxApi* | [**faxSend**](docs/FaxApi.md#faxSend) | **POST** /fax/send | Send Fax
Expand Down
6 changes: 3 additions & 3 deletions sdks/java-v1/docs/FaxApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All URIs are relative to *https://api.hellosign.com/v3*
| Method | HTTP request | Description |
|------------- | ------------- | -------------|
[**faxDelete**](FaxApi.md#faxDelete) | **DELETE** /fax/{fax_id} | Delete Fax
[**faxFiles**](FaxApi.md#faxFiles) | **GET** /fax/files/{fax_id} | List Fax Files
[**faxFiles**](FaxApi.md#faxFiles) | **GET** /fax/files/{fax_id} | Download Fax Files
[**faxGet**](FaxApi.md#faxGet) | **GET** /fax/{fax_id} | Get Fax
[**faxList**](FaxApi.md#faxList) | **GET** /fax/list | Lists Faxes
[**faxSend**](FaxApi.md#faxSend) | **POST** /fax/send | Send Fax
Expand Down Expand Up @@ -82,9 +82,9 @@ null (empty response body)

> File faxFiles(faxId)

List Fax Files
Download Fax Files

Returns list of fax files
Downloads fax files

### Example

Expand Down
2 changes: 1 addition & 1 deletion sdks/java-v1/docs/FaxLineApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public class Example {

Get Available Fax Line Area Codes

Returns a response with the area codes available for a given state/provice and city.
Returns a response with the area codes available for a given state/province and city.

### Example

Expand Down
4 changes: 2 additions & 2 deletions sdks/java-v1/src/main/java/com/dropbox/sign/api/FaxApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public ApiResponse<Void> faxDeleteWithHttpInfo(String faxId) throws ApiException
}

/**
* List Fax Files. Returns list of fax files
* Download Fax Files. Downloads fax files
*
* @param faxId Fax ID (required)
* @return File
Expand All @@ -130,7 +130,7 @@ public File faxFiles(String faxId) throws ApiException {
}

/**
* List Fax Files. Returns list of fax files
* Download Fax Files. Downloads fax files
*
* @param faxId Fax ID (required)
* @return ApiResponse&lt;File&gt;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public ApiResponse<FaxLineResponse> faxLineAddUserWithHttpInfo(

/**
* Get Available Fax Line Area Codes. Returns a response with the area codes available for a
* given state/provice and city.
* given state/province and city.
*
* @param country Filter area codes by country. (required)
* @param state Filter area codes by state. (optional)
Expand Down Expand Up @@ -208,7 +208,7 @@ public ApiResponse<FaxLineAreaCodeGetResponse> faxLineAreaCodeGetWithHttpInfo(

/**
* Get Available Fax Line Area Codes. Returns a response with the area codes available for a
* given state/provice and city.
* given state/province and city.
*
* @param country Filter area codes by country. (required)
* @param state Filter area codes by state. (optional)
Expand Down
2 changes: 1 addition & 1 deletion sdks/java-v2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Class | Method | HTTP request | Description
*EmbeddedApi* | [**embeddedEditUrl**](docs/EmbeddedApi.md#embeddedEditUrl) | **POST** /embedded/edit_url/{template_id} | Get Embedded Template Edit URL
*EmbeddedApi* | [**embeddedSignUrl**](docs/EmbeddedApi.md#embeddedSignUrl) | **GET** /embedded/sign_url/{signature_id} | Get Embedded Sign URL
*FaxApi* | [**faxDelete**](docs/FaxApi.md#faxDelete) | **DELETE** /fax/{fax_id} | Delete Fax
*FaxApi* | [**faxFiles**](docs/FaxApi.md#faxFiles) | **GET** /fax/files/{fax_id} | List Fax Files
*FaxApi* | [**faxFiles**](docs/FaxApi.md#faxFiles) | **GET** /fax/files/{fax_id} | Download Fax Files
*FaxApi* | [**faxGet**](docs/FaxApi.md#faxGet) | **GET** /fax/{fax_id} | Get Fax
*FaxApi* | [**faxList**](docs/FaxApi.md#faxList) | **GET** /fax/list | Lists Faxes
*FaxApi* | [**faxSend**](docs/FaxApi.md#faxSend) | **POST** /fax/send | Send Fax
Expand Down
6 changes: 3 additions & 3 deletions sdks/java-v2/docs/FaxApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All URIs are relative to *https://api.hellosign.com/v3*
| Method | HTTP request | Description |
|------------- | ------------- | -------------|
[**faxDelete**](FaxApi.md#faxDelete) | **DELETE** /fax/{fax_id} | Delete Fax
[**faxFiles**](FaxApi.md#faxFiles) | **GET** /fax/files/{fax_id} | List Fax Files
[**faxFiles**](FaxApi.md#faxFiles) | **GET** /fax/files/{fax_id} | Download Fax Files
[**faxGet**](FaxApi.md#faxGet) | **GET** /fax/{fax_id} | Get Fax
[**faxList**](FaxApi.md#faxList) | **GET** /fax/list | Lists Faxes
[**faxSend**](FaxApi.md#faxSend) | **POST** /fax/send | Send Fax
Expand Down Expand Up @@ -82,9 +82,9 @@ null (empty response body)

> File faxFiles(faxId)

List Fax Files
Download Fax Files

Returns list of fax files
Downloads fax files

### Example

Expand Down
2 changes: 1 addition & 1 deletion sdks/java-v2/docs/FaxLineApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public class Example {

Get Available Fax Line Area Codes

Returns a response with the area codes available for a given state/provice and city.
Returns a response with the area codes available for a given state/province and city.

### Example

Expand Down
8 changes: 4 additions & 4 deletions sdks/java-v2/src/main/java/com/dropbox/sign/api/FaxApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ public ApiResponse<Void> faxDeleteWithHttpInfo(String faxId) throws ApiException
);
}
/**
* List Fax Files.
* Returns list of fax files
* Download Fax Files.
* Downloads fax files
* @param faxId Fax ID (required)
* @return File
* @throws ApiException if fails to make API call
Expand All @@ -132,8 +132,8 @@ public File faxFiles(String faxId) throws ApiException {


/**
* List Fax Files.
* Returns list of fax files
* Download Fax Files.
* Downloads fax files
* @param faxId Fax ID (required)
* @return ApiResponse&lt;File&gt;
* @throws ApiException if fails to make API call
Expand Down
Loading