-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from SignRequest/2.0.0
2.0.0
- Loading branch information
Showing
72 changed files
with
1,811 additions
and
1,428 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.3.1 | ||
2.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# SignRequest.Model.Event | ||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Uuid** | **string** | | [optional] | ||
**Status** | **string** | | [optional] | ||
**EventType** | **string** | | [optional] | ||
**Delivered** | **bool?** | | [optional] | ||
**DeliveredOn** | **DateTime?** | | [optional] | ||
**CallbackStatusCode** | **int?** | | [optional] | ||
**Timestamp** | **DateTime?** | | [optional] | ||
**Team** | [**DocumentTeam**](DocumentTeam.md) | | [optional] | ||
**Document** | [**Document**](Document.md) | | [optional] | ||
**Signer** | [**Signer**](Signer.md) | | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ All URIs are relative to *https://signrequest.com/api/v1* | |
Method | HTTP request | Description | ||
------------- | ------------- | ------------- | ||
[**TeamsCreate**](TeamsApi.md#teamscreate) | **POST** /teams/ | Create a Team | ||
[**TeamsDelete**](TeamsApi.md#teamsdelete) | **DELETE** /teams/{subdomain}/ | Delete a Team | ||
[**TeamsInviteMember**](TeamsApi.md#teamsinvitemember) | **POST** /teams/{subdomain}/invite_member/ | Invite a Team Member | ||
[**TeamsList**](TeamsApi.md#teamslist) | **GET** /teams/ | Retrieve a list of Teams | ||
[**TeamsPartialUpdate**](TeamsApi.md#teamspartialupdate) | **PATCH** /teams/{subdomain}/ | Update a Team | ||
|
@@ -76,6 +77,70 @@ Name | Type | Description | Notes | |
|
||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) | ||
|
||
<a name="teamsdelete"></a> | ||
# **TeamsDelete** | ||
> void TeamsDelete (string subdomain) | ||
Delete a Team | ||
|
||
Required fields are **name** and **subdomain** where the subdomain is globally unique. Use **POST** to create a Team. To update a field on a Team use **PATCH**. To use the API on behalf of a particular team change the endpoint to: *https://_**{{ subdomain }}**.signrequest.com/api/v1/...* To invite new team members you can use **POST** {\"email\":\"**[email protected]**\",\"is_admin\":false,\"is_owner\":false} to: *https://signrequest.com/api/v1/teams/_**{{ subdomain }}**_/invite_member/_* | ||
|
||
### Example | ||
```csharp | ||
using System; | ||
using System.Diagnostics; | ||
using SignRequest.Api; | ||
using SignRequest.Client; | ||
using SignRequest.Model; | ||
|
||
namespace Example | ||
{ | ||
public class TeamsDeleteExample | ||
{ | ||
public void main() | ||
{ | ||
// Configure API key authorization: Token | ||
Configuration.Default.AddApiKey("Authorization", "YOUR_API_KEY"); | ||
Configuration.Default.AddApiKeyPrefix("Authorization", "Token"); | ||
|
||
var apiInstance = new TeamsApi(); | ||
var subdomain = subdomain_example; // string | | ||
try | ||
{ | ||
// Delete a Team | ||
apiInstance.TeamsDelete(subdomain); | ||
} | ||
catch (Exception e) | ||
{ | ||
Debug.Print("Exception when calling TeamsApi.TeamsDelete: " + e.Message ); | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
||
### Parameters | ||
|
||
Name | Type | Description | Notes | ||
------------- | ------------- | ------------- | ------------- | ||
**subdomain** | **string**| | | ||
|
||
### Return type | ||
|
||
void (empty response body) | ||
|
||
### Authorization | ||
|
||
[Token](../README.md#Token) | ||
|
||
### HTTP request headers | ||
|
||
- **Content-Type**: application/json | ||
- **Accept**: application/json | ||
|
||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) | ||
|
||
<a name="teamsinvitemember"></a> | ||
# **TeamsInviteMember** | ||
> InviteMember TeamsInviteMember (string subdomain, InviteMember data) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,7 @@ Contact: [email protected] | |
<Import Project="$(MsBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<ItemGroup> | ||
<ProjectReference Include="..\SignRequest\SignRequest.csproj"> | ||
<Project>{8C6F5E9C-ED26-437A-87ED-4A6F2E35A098}</Project> | ||
<Project>{7C55D80D-01C1-41D9-A66D-B6921DC0997F}</Project> | ||
<Name>SignRequest</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
Oops, something went wrong.