DealMakerAPI 0.0.2 → 0.68.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/DealMakerAPI.gemspec +4 -4
- data/README.md +221 -127
- data/docs/CompanyApi.md +214 -0
- data/docs/CreateCompanyRequest.md +32 -0
- data/docs/CreateCorporationProfileRequest.md +82 -0
- data/docs/CreateDealSetupRequest.md +30 -0
- data/docs/CreateIndividualProfileRequest.md +44 -0
- data/docs/CreateInvestorRequest.md +40 -0
- data/docs/CreateJointProfileRequest.md +68 -0
- data/docs/CreateTrustProfileRequest.md +60 -0
- data/docs/DealApi.md +21 -165
- data/docs/DealSetupApi.md +74 -0
- data/docs/DefaultApi.md +413 -0
- data/docs/InvestorApi.md +368 -0
- data/docs/InvestorProfileApi.md +573 -15
- data/docs/PatchCorporationProfileRequest.md +58 -0
- data/docs/PatchIndividualProfileRequest.md +42 -0
- data/docs/PatchInvestorRequest.md +18 -0
- data/docs/PatchJointProfileRequest.md +66 -0
- data/docs/PatchTrustProfileRequest.md +58 -0
- data/docs/PostWebhooksRequest.md +26 -0
- data/docs/PutWebhooksIdRequest.md +30 -0
- data/docs/UpdateInvestorRequest.md +24 -0
- data/docs/V1EntitiesAddress.md +28 -0
- data/docs/V1EntitiesAddresses.md +18 -0
- data/docs/V1EntitiesCompany.md +34 -0
- data/docs/V1EntitiesCompanyDeal.md +20 -0
- data/docs/V1EntitiesCompanyDeals.md +18 -0
- data/docs/V1EntitiesDealSetup.md +34 -0
- data/docs/V1EntitiesDealSetupUser.md +20 -0
- data/docs/V1EntitiesDeals.md +18 -0
- data/docs/V1EntitiesInvestor.md +10 -4
- data/docs/V1EntitiesInvestorProfileAddress.md +28 -0
- data/docs/V1EntitiesInvestorProfileCorporation.md +34 -0
- data/docs/V1EntitiesInvestorProfileFieldsAccountHolder.md +28 -0
- data/docs/V1EntitiesInvestorProfileFieldsCorporation.md +24 -0
- data/docs/V1EntitiesInvestorProfileFieldsPrimaryHolder.md +30 -0
- data/docs/V1EntitiesInvestorProfileFieldsTrust.md +24 -0
- data/docs/V1EntitiesInvestorProfileIndividual.md +6 -16
- data/docs/V1EntitiesInvestorProfileItem.md +18 -0
- data/docs/V1EntitiesInvestorProfileJoint.md +34 -0
- data/docs/V1EntitiesInvestorProfileTrust.md +32 -0
- data/docs/V1EntitiesInvestorProfiles.md +18 -0
- data/docs/V1EntitiesWebhooksDeal.md +22 -0
- data/docs/V1EntitiesWebhooksSecurityToken.md +18 -0
- data/docs/V1EntitiesWebhooksSubscription.md +28 -0
- data/docs/V1EntitiesWebhooksSubscriptionDeal.md +24 -0
- data/docs/V1EntitiesWebhooksSubscriptionDeals.md +18 -0
- data/lib/DealMakerAPI/api/company_api.rb +219 -0
- data/lib/DealMakerAPI/api/deal_api.rb +23 -174
- data/lib/DealMakerAPI/api/deal_setup_api.rb +90 -0
- data/lib/DealMakerAPI/api/default_api.rb +403 -0
- data/lib/DealMakerAPI/api/investor_api.rb +399 -0
- data/lib/DealMakerAPI/api/investor_profile_api.rb +570 -16
- data/lib/DealMakerAPI/api_client.rb +5 -3
- data/lib/DealMakerAPI/api_error.rb +3 -2
- data/lib/DealMakerAPI/configuration.rb +4 -3
- data/lib/DealMakerAPI/models/create_company_request.rb +320 -0
- data/lib/DealMakerAPI/models/create_corporation_profile_request.rb +601 -0
- data/lib/DealMakerAPI/models/create_deal_setup_request.rb +364 -0
- data/lib/DealMakerAPI/models/create_individual_profile_request.rb +389 -0
- data/lib/DealMakerAPI/models/create_investor_request.rb +386 -0
- data/lib/DealMakerAPI/models/create_joint_profile_request.rb +521 -0
- data/lib/DealMakerAPI/models/create_trust_profile_request.rb +491 -0
- data/lib/DealMakerAPI/models/patch_corporation_profile_request.rb +454 -0
- data/lib/DealMakerAPI/models/patch_individual_profile_request.rb +374 -0
- data/lib/DealMakerAPI/models/patch_investor_request.rb +225 -0
- data/lib/DealMakerAPI/models/patch_joint_profile_request.rb +506 -0
- data/lib/DealMakerAPI/models/patch_trust_profile_request.rb +454 -0
- data/lib/DealMakerAPI/models/post_webhooks_request.rb +277 -0
- data/lib/DealMakerAPI/models/put_webhooks_id_request.rb +286 -0
- data/lib/DealMakerAPI/models/update_investor_request.rb +286 -0
- data/lib/DealMakerAPI/models/v1_entities_address.rb +270 -0
- data/lib/DealMakerAPI/models/v1_entities_addresses.rb +219 -0
- data/lib/DealMakerAPI/models/v1_entities_attachment.rb +3 -2
- data/lib/DealMakerAPI/models/v1_entities_background_check_search.rb +3 -2
- data/lib/DealMakerAPI/models/v1_entities_company.rb +299 -0
- data/lib/DealMakerAPI/models/v1_entities_company_deal.rb +230 -0
- data/lib/DealMakerAPI/models/v1_entities_company_deals.rb +219 -0
- data/lib/DealMakerAPI/models/v1_entities_deal.rb +5 -4
- data/lib/DealMakerAPI/models/v1_entities_deal_enterprise.rb +3 -2
- data/lib/DealMakerAPI/models/v1_entities_deal_funding_metrics.rb +3 -2
- data/lib/DealMakerAPI/models/v1_entities_deal_investor_metrics.rb +3 -2
- data/lib/DealMakerAPI/models/v1_entities_deal_issuer.rb +3 -2
- data/lib/DealMakerAPI/models/v1_entities_deal_setup.rb +300 -0
- data/lib/DealMakerAPI/models/v1_entities_deal_setup_user.rb +230 -0
- data/lib/DealMakerAPI/models/v1_entities_deals.rb +220 -0
- data/lib/DealMakerAPI/models/v1_entities_investor.rb +50 -20
- data/lib/DealMakerAPI/models/v1_entities_investor_profile_address.rb +270 -0
- data/lib/DealMakerAPI/models/v1_entities_investor_profile_corporation.rb +332 -0
- data/lib/DealMakerAPI/models/v1_entities_investor_profile_fields_account_holder.rb +269 -0
- data/lib/DealMakerAPI/models/v1_entities_investor_profile_fields_corporation.rb +249 -0
- data/lib/DealMakerAPI/models/v1_entities_investor_profile_fields_primary_holder.rb +279 -0
- data/lib/DealMakerAPI/models/v1_entities_investor_profile_fields_trust.rb +249 -0
- data/lib/DealMakerAPI/models/v1_entities_investor_profile_individual.rb +26 -76
- data/lib/DealMakerAPI/models/v1_entities_investor_profile_item.rb +219 -0
- data/lib/DealMakerAPI/models/v1_entities_investor_profile_joint.rb +333 -0
- data/lib/DealMakerAPI/models/v1_entities_investor_profile_trust.rb +323 -0
- data/lib/DealMakerAPI/models/v1_entities_investor_profiles.rb +220 -0
- data/lib/DealMakerAPI/models/v1_entities_investor_user.rb +3 -2
- data/lib/DealMakerAPI/models/v1_entities_investors.rb +3 -2
- data/lib/DealMakerAPI/models/v1_entities_subscription_agreement.rb +3 -2
- data/lib/DealMakerAPI/models/v1_entities_webhooks_deal.rb +241 -0
- data/lib/DealMakerAPI/models/v1_entities_webhooks_security_token.rb +221 -0
- data/lib/DealMakerAPI/models/v1_entities_webhooks_subscription.rb +270 -0
- data/lib/DealMakerAPI/models/v1_entities_webhooks_subscription_deal.rb +250 -0
- data/lib/DealMakerAPI/models/v1_entities_webhooks_subscription_deals.rb +219 -0
- data/lib/DealMakerAPI/version.rb +3 -3
- data/lib/DealMakerAPI.rb +44 -2
- data/spec/api/company_api_spec.rb +73 -0
- data/spec/api/deal_api_spec.rb +9 -37
- data/spec/api/deal_setup_api_spec.rb +47 -0
- data/spec/api/default_api_spec.rb +108 -0
- data/spec/api/investor_api_spec.rb +106 -0
- data/spec/api/investor_profile_api_spec.rb +109 -7
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +2 -2
- data/spec/models/create_company_request_spec.rb +76 -0
- data/spec/models/create_corporation_profile_request_spec.rb +230 -0
- data/spec/models/create_deal_setup_request_spec.rb +82 -0
- data/spec/models/create_individual_profile_request_spec.rb +116 -0
- data/spec/models/create_investor_request_spec.rb +108 -0
- data/spec/models/create_joint_profile_request_spec.rb +192 -0
- data/spec/models/create_trust_profile_request_spec.rb +164 -0
- data/spec/models/patch_corporation_profile_request_spec.rb +158 -0
- data/spec/models/patch_individual_profile_request_spec.rb +110 -0
- data/spec/models/patch_investor_request_spec.rb +34 -0
- data/spec/models/patch_joint_profile_request_spec.rb +186 -0
- data/spec/models/patch_trust_profile_request_spec.rb +158 -0
- data/spec/models/post_webhooks_request_spec.rb +58 -0
- data/spec/models/put_webhooks_id_request_spec.rb +70 -0
- data/spec/models/update_investor_request_spec.rb +56 -0
- data/spec/models/v1_entities_address_spec.rb +64 -0
- data/spec/models/v1_entities_addresses_spec.rb +34 -0
- data/spec/models/v1_entities_attachment_spec.rb +2 -2
- data/spec/models/v1_entities_background_check_search_spec.rb +2 -2
- data/spec/models/v1_entities_company_deal_spec.rb +40 -0
- data/spec/models/v1_entities_company_deals_spec.rb +34 -0
- data/spec/models/v1_entities_company_spec.rb +82 -0
- data/spec/models/v1_entities_deal_enterprise_spec.rb +2 -2
- data/spec/models/v1_entities_deal_funding_metrics_spec.rb +2 -2
- data/spec/models/v1_entities_deal_investor_metrics_spec.rb +2 -2
- data/spec/models/v1_entities_deal_issuer_spec.rb +2 -2
- data/spec/models/v1_entities_deal_setup_spec.rb +82 -0
- data/spec/models/v1_entities_deal_setup_user_spec.rb +40 -0
- data/spec/models/v1_entities_deal_spec.rb +76 -2
- data/spec/models/v1_entities_deals_spec.rb +34 -0
- data/spec/models/v1_entities_investor_profile_address_spec.rb +64 -0
- data/spec/models/v1_entities_investor_profile_corporation_spec.rb +86 -0
- data/spec/models/v1_entities_investor_profile_fields_account_holder_spec.rb +64 -0
- data/spec/models/v1_entities_investor_profile_fields_corporation_spec.rb +52 -0
- data/spec/models/v1_entities_investor_profile_fields_primary_holder_spec.rb +70 -0
- data/spec/models/v1_entities_investor_profile_fields_trust_spec.rb +52 -0
- data/spec/models/v1_entities_investor_profile_individual_spec.rb +6 -36
- data/spec/models/v1_entities_investor_profile_item_spec.rb +34 -0
- data/spec/models/v1_entities_investor_profile_joint_spec.rb +86 -0
- data/spec/models/v1_entities_investor_profile_trust_spec.rb +80 -0
- data/spec/models/v1_entities_investor_profiles_spec.rb +34 -0
- data/spec/models/v1_entities_investor_spec.rb +29 -5
- data/spec/models/v1_entities_investor_user_spec.rb +2 -2
- data/spec/models/v1_entities_investors_spec.rb +2 -2
- data/spec/models/v1_entities_subscription_agreement_spec.rb +2 -2
- data/spec/models/v1_entities_webhooks_deal_spec.rb +46 -0
- data/spec/models/v1_entities_webhooks_security_token_spec.rb +34 -0
- data/spec/models/v1_entities_webhooks_subscription_deal_spec.rb +52 -0
- data/spec/models/v1_entities_webhooks_subscription_deals_spec.rb +34 -0
- data/spec/models/v1_entities_webhooks_subscription_spec.rb +64 -0
- data/spec/spec_helper.rb +2 -2
- metadata +180 -12
data/README.md
CHANGED
@@ -4,22 +4,22 @@ DealMakerAPI - the Ruby gem for the DealMaker API
|
|
4
4
|
|
5
5
|
# Introduction
|
6
6
|
|
7
|
-
Welcome to DealMaker’s Web API v1! This API is RESTful, easy to integrate with, and offers support in 2 different languages.
|
7
|
+
Welcome to DealMaker’s Web API v1! This API is RESTful, easy to integrate with, and offers support in 2 different languages. This is the technical documentation for our API. There are tutorials and examples of integrations with our API available on our [knowledge centre](https://help.dealmaker.tech/training-centre) as well.
|
8
8
|
|
9
9
|
# Libraries
|
10
10
|
|
11
|
-
|
12
|
-
|
11
|
+
- Javascript
|
12
|
+
- Ruby
|
13
13
|
|
14
14
|
# Authentication
|
15
15
|
|
16
|
-
To authenticate, add an Authorization header to your API request that contains an access token.
|
16
|
+
To authenticate, add an Authorization header to your API request that contains an access token. Before you [generate an access token](#how-to-generate-an-access-token) your must first [create an application](#create-an-application) on your portal and retrieve the your client ID and secret
|
17
17
|
|
18
18
|
## Create an Application
|
19
19
|
|
20
|
-
DealMaker’s Web API v1 supports the use of OAuth applications. Applications can be generated in your [account](https://app.dealmaker.tech/developer/applications).
|
20
|
+
DealMaker’s Web API v1 supports the use of OAuth applications. Applications can be generated in your [account](https://app.dealmaker.tech/developer/applications).
|
21
21
|
|
22
|
-
|
22
|
+
To create an API Application, click on your user name in the top right corner to open a dropdown menu, and select \"Integrations\". Under the API settings tab, click the `Create New Application` button
|
23
23
|
|
24
24
|
![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-1.png)
|
25
25
|
|
@@ -27,7 +27,7 @@ Name your application and assign the level of permissions for this application
|
|
27
27
|
|
28
28
|
![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-2.png)
|
29
29
|
|
30
|
-
Once your application is created, save in a secure space your
|
30
|
+
Once your application is created, save in a secure space your client ID and secret.
|
31
31
|
|
32
32
|
**WARNING**: The secret key will not be visible after you click the close button
|
33
33
|
|
@@ -37,13 +37,10 @@ From the developer tab, you will be able to view and manage all the available ap
|
|
37
37
|
|
38
38
|
![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-4.png)
|
39
39
|
|
40
|
-
|
41
40
|
Each Application consists of a client id, secret and set of scopes. The scopes define what resources you want to have access to. The client ID and secret are used to generate an access token. You will need to create an application to use API endpoints.
|
42
41
|
|
43
|
-
|
44
42
|
## How to generate an access token
|
45
43
|
|
46
|
-
|
47
44
|
After creating an application, you must make a call to obtain a bearer token using the Generate an OAuth token operation. This operation requires the following parameters:
|
48
45
|
|
49
46
|
`token endpoint` - https://app.dealmaker.tech/oauth/token
|
@@ -54,37 +51,41 @@ After creating an application, you must make a call to obtain a bearer token usi
|
|
54
51
|
|
55
52
|
`client_secret` - the Client Secret displayed when you created the OAuth application in the previous step
|
56
53
|
|
57
|
-
|
58
54
|
`scope` - the scope is established when you created the OAuth application in the previous step
|
59
55
|
|
60
56
|
Note: The Generate an OAuth token response specifies how long the bearer token is valid for. You should reuse the bearer token until it is expired. When the token is expired, call Generate an OAuth token again to generate a new one.
|
61
57
|
|
62
58
|
To use the access token, you must set a plain text header named `Authorization` with the contents of the header being “Bearer XXX” where XXX is your generated access token.
|
63
59
|
|
60
|
+
### Example
|
61
|
+
|
62
|
+
#### Postman
|
63
|
+
|
64
|
+
Here's an example on how to generate the access token with Postman, where `{{CLIENT_ID}}` and `{{CLIENT_SECRET}}` are the values generated after following the steps on [Create an Application](#create-an-application)
|
65
|
+
|
66
|
+
![Get access token postman example](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/token-postman.png)
|
67
|
+
|
64
68
|
# Status Codes
|
65
69
|
|
66
70
|
## Content-Type Header
|
67
71
|
|
68
|
-
|
69
72
|
All responses are returned in JSON format. We specify this by sending the Content-Type header.
|
70
73
|
|
71
|
-
|
72
74
|
## Status Codes
|
73
75
|
|
74
76
|
Below is a table containing descriptions of the various status codes we currently support against various resources.
|
75
77
|
|
76
78
|
Sometimes your API call will generate an error. Here you will find additional information about what to expect if you don’t format your request properly, or we fail to properly process your request.
|
77
79
|
|
78
|
-
| Status Code
|
80
|
+
| Status Code | Description |
|
79
81
|
| ----------- | ----------- |
|
80
|
-
| `200`
|
81
|
-
| `403`
|
82
|
-
| `404`
|
83
|
-
|
82
|
+
| `200` | Success |
|
83
|
+
| `403` | Forbidden |
|
84
|
+
| `404` | Not found |
|
84
85
|
|
85
86
|
# Pagination
|
86
87
|
|
87
|
-
Pagination is used to divide large
|
88
|
+
Pagination is used to divide large responses is smaller portions (pages). By default, all endpoints return a maximum of 25 records per page. You can change the number of records on a per request basis by passing a `per_page` parameter in the request header parameters. The largest supported `per_page` parameter is 100.
|
88
89
|
|
89
90
|
When the response exceeds the `per_page` parameter, you can paginate through the records by increasing the `offset` parameter. Example: `offset=25` will return 25 records starting from 26th record. You may also paginate using the `page` parameter to indicate the page number you would like to show on the response.
|
90
91
|
|
@@ -92,49 +93,90 @@ Please review the table below for the input parameters
|
|
92
93
|
|
93
94
|
## Inputs
|
94
95
|
|
95
|
-
| Parameter
|
96
|
-
|
|
97
|
-
| `per_page` | Amount of records included on each page (Default is 25)
|
98
|
-
| `page`
|
99
|
-
| `offset`
|
96
|
+
| Parameter | Description |
|
97
|
+
| ---------- | ------------------------------------------------------------------------------- |
|
98
|
+
| `per_page` | Amount of records included on each page (Default is 25) |
|
99
|
+
| `page` | Page number |
|
100
|
+
| `offset` | Amount of records offset on the API request where 0 represents the first record |
|
101
|
+
|
102
|
+
## Response Headers
|
103
|
+
|
104
|
+
| Response Header | Description |
|
105
|
+
| --------------- | -------------------------------------------- |
|
106
|
+
| `X-Total` | Total number of records of response |
|
107
|
+
| `X-Total-Pages` | Total number of pages of response |
|
108
|
+
| `X-Per-Page` | Total number of records per page of response |
|
109
|
+
| `X-Page` | Number of current page |
|
110
|
+
| `X-Next-Page` | Number of next page |
|
111
|
+
| `X-Prev-Page` | Number of previous page |
|
112
|
+
| `X-Offset` | Total number of records offset |
|
113
|
+
|
114
|
+
# Search and Filtering (The q parameter)
|
100
115
|
|
116
|
+
The q optional parameter accepts a string as input and allows you to filter the request based on that string. Please note that search strings must be encoded according to ASCII. For example, \"john+investor@dealmaker.tech\" should be passed as “john%2Binvestor%40dealmaker.tech”. There are two main ways to filter with it.
|
101
117
|
|
102
|
-
##
|
118
|
+
## Keyword filtering
|
103
119
|
|
104
|
-
|
120
|
+
Some keywords allow you to filter investors based on a specific “scope” of the investors, for example using the string “Invited” will filter all investors with the status invited, and the keyword “Has attachments” will filter investors with attachments.
|
105
121
|
|
122
|
+
Here’s a list of possible keywords and the “scope” each one of the keywords filters by:
|
106
123
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
124
|
+
| Keywords | Scope | Decoded Example | Encoded Example |
|
125
|
+
| ---------------------------------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
|
126
|
+
| Signed on \\(date range\\) | Investors who signed in the provided date range | Signed on (date range) [2020-07-01:2020-07-31] | `Signed%20on%20%28date%20range%29%20%5B2020-07-01%3A2020-07-31%5D` |
|
127
|
+
| Enabled for countersignature on \\(date range\\) | Investors who were enabled for counter signature in the provided date range | Enabled for countersignature on (date range) [2022-05-24:2022-05-25] | `Enabled%20for%20countersignature%20on%20(date%20range)%20%5B2022-05-24%3A2022-05-25%5D` |
|
128
|
+
| Accepted on \\(date range\\) | Investors accepted in the provided date rage | Accepted on (date range) [2022-05-24:2022-05-25] | `Accepted%20on%20(date%20range)%20%5B2022-05-24%3A2022-05-25%5D` |
|
129
|
+
| Offline | Investors added to the deal offline | Offline | `Offline` |
|
130
|
+
| Online | Investors added to the deal online | Online | `Online` |
|
131
|
+
| Signed | Investors who signed their agreement | Signed | `Signed` |
|
132
|
+
| Waiting for countersignature | Investors who have signed and are waiting for counter signature | Waiting for countersignature | `Waiting%20for%20countersignature` |
|
133
|
+
| Invited | Investors on the Invited Status | Invited | `Invited` |
|
134
|
+
| Accepted | Investors in the Accepted Status | Accepted | `Accepted` |
|
135
|
+
| Questionnaire in progress | All Investors who have not finished completing the questionnaire | Questionnaire in progress | `Questionnaire%20in%20progress` |
|
136
|
+
| Has attachments | All Investors with attachments | Has attachments | `Has%20attachments` |
|
137
|
+
| Has notes | All Investors with notes | Has notes | `Has%20notes` |
|
138
|
+
| Waiting for co-signature | Investors who have signed and are waiting for co-signature | Waiting for co-signature | `Waiting%20for%20co-signature` |
|
139
|
+
| Background Check Approved | Investors with approved background check | Background Check Approved | `Background%20Check%20Approved` |
|
140
|
+
| Document Review Pending | Investors with pending review | Document Review Pending | `Document%20Review%20Pending` |
|
141
|
+
| Document Upload Pending | Investors with pending documents to upload | Document Upload Pending | `Document%20Upload%20Pending` |
|
142
|
+
| Required adjudicator review | Investors who are required to be review by the adjudicator | Required adjudicator review | `Required%20adjudicator%20review` |
|
143
|
+
|
144
|
+
---
|
145
|
+
|
146
|
+
**NOTE**
|
147
|
+
|
148
|
+
Filtering keywords are case sensitive and need to be encoded
|
149
|
+
|
150
|
+
---
|
151
|
+
|
152
|
+
## Search String
|
153
|
+
|
154
|
+
Any value for the parameter which does not match one of the keywords listed above, will use fields like `first name`, `last name`, `email`, `tags` to search for the investor.
|
155
|
+
|
156
|
+
For example, if you search “Robert”, because this does not match one of the keywords listed above, it will then return any investors who have the string “Robert” in their name, email, or tags fields.
|
116
157
|
|
117
158
|
# Versioning
|
118
159
|
|
119
160
|
The latest version is v1.
|
120
161
|
|
121
|
-
The version can be updated on the `Accept` header, just set the version as stated on the following example:
|
162
|
+
The version can be updated on the `Accept` header, just set the version as stated on the following example:
|
122
163
|
|
123
164
|
```
|
124
165
|
|
125
166
|
Accept:application/vnd.dealmaker-v1+json
|
126
167
|
|
127
168
|
```
|
128
|
-
|
129
|
-
|
|
169
|
+
|
170
|
+
| Version | Accept Header |
|
171
|
+
| ------- | ----------------------------------- |
|
130
172
|
| `v1` | application/vnd.dealmaker-`v1`+json |
|
131
173
|
|
132
174
|
# SDK’s
|
133
175
|
|
134
176
|
For instruction on installing SDKs, please view the following links
|
135
177
|
|
136
|
-
|
137
|
-
|
178
|
+
- [Javascript](https://github.com/DealMakerTech/api/tree/main/v1/clients/javascript)
|
179
|
+
- [Ruby](https://github.com/DealMakerTech/api/tree/main/v1/clients/ruby)
|
138
180
|
|
139
181
|
# Webhooks
|
140
182
|
|
@@ -142,28 +184,27 @@ Our webhooks functionality allows clients to automatically receive updates on a
|
|
142
184
|
|
143
185
|
The type of data that the webhooks include:
|
144
186
|
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
187
|
+
- Investor Name
|
188
|
+
- Date created
|
189
|
+
- Email
|
190
|
+
- Phone
|
191
|
+
- Allocation
|
192
|
+
- Attachments
|
193
|
+
- Accredited investor status
|
194
|
+
- Accredited investor category
|
195
|
+
- Status (Draft, Invited, Accepted, Waiting)
|
154
196
|
|
155
197
|
Via webhooks clients can subscribe to the following events as they happen on Dealmaker:
|
156
198
|
|
157
|
-
|
158
|
-
|
159
|
-
|
199
|
+
- Investor is created
|
200
|
+
- Investor details are updated (any of the investor details above change or are updated)
|
201
|
+
- Investor is deleted
|
160
202
|
|
161
203
|
A URL supplied by the client will receive all the events with the information as part of the payload. Clients are able to add and update the URL within DealMaker.
|
162
204
|
|
163
205
|
## Configuration
|
164
206
|
|
165
|
-
For a comprehensive guide on how to configure Webhooks please visit our support article: [Configuring Webhooks on DealMaker – DealMaker Support](https://help.dealmaker.tech/configuring-webhooks-on-dealmaker).
|
166
|
-
|
207
|
+
For a comprehensive guide on how to configure Webhooks please visit our support article: [Configuring Webhooks on DealMaker – DealMaker Support](https://help.dealmaker.tech/configuring-webhooks-on-dealmaker).
|
167
208
|
|
168
209
|
As a developer user on DealMaker, you are able to configure webhooks by following the steps below:
|
169
210
|
|
@@ -171,9 +212,9 @@ As a developer user on DealMaker, you are able to configure webhooks by followin
|
|
171
212
|
2. Go to **“Your profile”** in the top right corner
|
172
213
|
3. Access an **“Integrations”** configuration via the left menu
|
173
214
|
4. The developer configures webhooks by including:
|
174
|
-
|
175
|
-
|
176
|
-
|
215
|
+
- The HTTPS URL where the request will be sent
|
216
|
+
- Optionally, a security token that we would use to build a SHA1 hash that would be included in the request headers. The name of the header is `X-DealMaker-Signature`. If the secret is not specified, the hash won’t be included in the headers.
|
217
|
+
- An email address that will be used to notify about errors.
|
177
218
|
5. The developers can disable webhooks temporarily if needed
|
178
219
|
|
179
220
|
## Specification
|
@@ -184,100 +225,95 @@ The initial set of events will be related to the investor. The events are:
|
|
184
225
|
|
185
226
|
1. `investor.created`
|
186
227
|
|
187
|
-
|
228
|
+
- Triggers every time a new investor is added to a deal
|
188
229
|
|
189
230
|
2. `investor.updated`
|
190
231
|
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
232
|
+
- Triggers on updates to any of the following fields:
|
233
|
+
1. Status
|
234
|
+
2. Name
|
235
|
+
3. Email - (this is a user field so we trigger event for all investors with webhook subscription)
|
236
|
+
4. Allocated Amount
|
237
|
+
5. Investment Amount
|
238
|
+
6. Accredited investor fields
|
239
|
+
7. Adding or removing attachments
|
240
|
+
8. Tags
|
241
|
+
- When the investor status is signed, the payload also includes a link to the signed document; the link expires after 30 minutes
|
201
242
|
|
202
243
|
3. `investor.deleted`
|
203
244
|
|
204
|
-
|
205
|
-
|
206
|
-
|
245
|
+
- Triggers when the investor is removed from the deal
|
246
|
+
- The investor key of the payload only includes investor ID
|
247
|
+
- The deal is not included in the payload. Due to our implementation it’s impossible to retrieve the deal the investor was part of
|
207
248
|
|
208
249
|
### Requests
|
209
250
|
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
251
|
+
- The request is a `POST`
|
252
|
+
- The payload’s `content-type` is `application/json`
|
253
|
+
- Only `2XX` responses are considered successful. In the event of a different response, we consider it failed and queue the event for retry
|
254
|
+
- We retry the request five times, after the initial attempt. Doubling the waiting time between intervals with each try. The first retry happens after 30 seconds, then 60 seconds, 2 mins, 4 minutes, and 8 minutes. This timing scheme gives the receiver about 1 hour if all the requests fail
|
255
|
+
- If an event fails all the attempts to be delivered, we send an email to the address that the user configured
|
215
256
|
|
216
257
|
### Payload
|
217
258
|
|
218
259
|
#### Common Properties
|
219
260
|
|
220
|
-
There will be some properties that are common to all the events on the system.
|
261
|
+
There will be some properties that are common to all the events on the system.
|
221
262
|
|
222
|
-
|Key|Type|Description|
|
223
|
-
|
224
|
-
|event|String|The event that triggered the call|
|
225
|
-
|event_id|String|A unique identifier for the event|
|
226
|
-
|deal<sup
|
263
|
+
| Key | Type | Description |
|
264
|
+
| ----------------- | ------ | -------------------------------------------------------------------------------------- |
|
265
|
+
| event | String | The event that triggered the call |
|
266
|
+
| event_id | String | A unique identifier for the event |
|
267
|
+
| deal<sup>\\*</sup> | Object | The deal in which the event occurred. It includes id, title, created_at and updated_at |
|
227
268
|
|
228
|
-
|
229
|
-
<sup>*</sup>This field is not included when deleting a resource
|
269
|
+
<sup>\\*</sup>This field is not included when deleting a resource
|
230
270
|
|
231
271
|
#### Common Properties (investor scope)
|
232
272
|
|
233
273
|
Every event on this scope must contain an investor object, here are some properties that are common to this object on all events in the investor scope:
|
234
274
|
|
235
|
-
|Key|Type|Description|
|
236
|
-
|
237
|
-
|id|Integer|The unique ID of the Investor|
|
238
|
-
|name|String|Investor’s Name|
|
239
|
-
|status|String|Current status of the investor<br />Possible states are: <br />draft<br />invited<br />signed<br />waiting<br />accepted|
|
240
|
-
|email|String
|
241
|
-
|phone_number|String
|
242
|
-
|investment_amount|Double
|
243
|
-
|allocated_amount|Double
|
244
|
-
|accredited_investor|Object|See format in respective ticket|
|
245
|
-
|attachments|Array of Objects|List of supporting documents uploaded to the investor, including URL (expire after 30 minutes) and title (caption)|
|
246
|
-
|funding_state|String|Investor’s current funding state (unfunded, underfunded, funded, overfunded)|
|
247
|
-
|funds_pending|Boolean|True if there are pending transactions, False otherwise|
|
248
|
-
|created_at|Date
|
249
|
-
|updated_at|Date
|
250
|
-
|tags|Array of Strings|a list of the investor's tags, separated by comma
|
251
|
-
|
275
|
+
| Key | Type | Description |
|
276
|
+
| ------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------ |
|
277
|
+
| id | Integer | The unique ID of the Investor |
|
278
|
+
| name | String | Investor’s Name |
|
279
|
+
| status | String | Current status of the investor<br />Possible states are: <br />draft<br />invited<br />signed<br />waiting<br />accepted |
|
280
|
+
| email | String | |
|
281
|
+
| phone_number | String | |
|
282
|
+
| investment_amount | Double | |
|
283
|
+
| allocated_amount | Double | |
|
284
|
+
| accredited_investor | Object | See format in respective ticket |
|
285
|
+
| attachments | Array of Objects | List of supporting documents uploaded to the investor, including URL (expire after 30 minutes) and title (caption) |
|
286
|
+
| funding_state | String | Investor’s current funding state (unfunded, underfunded, funded, overfunded) |
|
287
|
+
| funds_pending | Boolean | True if there are pending transactions, False otherwise |
|
288
|
+
| created_at | Date | |
|
289
|
+
| updated_at | Date | |
|
290
|
+
| tags | Array of Strings | a list of the investor's tags, separated by comma. |
|
252
291
|
|
253
292
|
### investor.status >= signed Specific Properties
|
254
293
|
|
255
|
-
|
256
|
-
|
|
257
|
-
|
258
|
-
|subscription_agreement|object|id, url (expiring URL)|
|
294
|
+
| Key | Type | Description |
|
295
|
+
| ---------------------- | ------ | ---------------------- |
|
296
|
+
| subscription_agreement | object | id, url (expiring URL) |
|
259
297
|
|
260
298
|
#### Investor Status
|
261
299
|
|
262
300
|
Here is a brief description of each investor state:
|
263
301
|
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
302
|
+
- **Draft:** the investor is added to the platform but hasn't been invited yet and cannot access the portal
|
303
|
+
- **Invited:** the investor was added to the platform but hasn’t completed the questionnaire
|
304
|
+
- **Signed:** the investor signed the document (needs approval from Lawyer or Reviewer before countersignature)
|
305
|
+
- **Waiting:** the investor was approved for countersignature by any of the Lawyers or Reviewers in the deal
|
306
|
+
- **Accepted:** the investor's agreement was countersigned by the Signatory
|
269
307
|
|
270
308
|
#### Update Delay
|
271
309
|
|
272
310
|
Given the high number of updates our platform performs on any investor, we’ve added a cool down period on update events that allows us to “group” updates and trigger only one every minute. In consequence, update events will be delivered 1 minute after the initial request was made and will include the latest version of the investor data at delivery time.
|
273
311
|
|
274
312
|
|
275
|
-
|
276
|
-
|
277
313
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
278
314
|
|
279
315
|
- API version: 1.0.0
|
280
|
-
- Package version: 0.
|
316
|
+
- Package version: 0.68.6
|
281
317
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
282
318
|
|
283
319
|
## Installation
|
@@ -293,16 +329,16 @@ gem build DealMakerAPI.gemspec
|
|
293
329
|
Then either install the gem locally:
|
294
330
|
|
295
331
|
```shell
|
296
|
-
gem install ./DealMakerAPI-0.
|
332
|
+
gem install ./DealMakerAPI-0.68.6.gem
|
297
333
|
```
|
298
334
|
|
299
|
-
(for development, run `gem install --dev ./DealMakerAPI-0.
|
335
|
+
(for development, run `gem install --dev ./DealMakerAPI-0.68.6.gem` to install the development dependencies)
|
300
336
|
|
301
337
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
302
338
|
|
303
339
|
Finally add this to the Gemfile:
|
304
340
|
|
305
|
-
gem 'DealMakerAPI', '~> 0.
|
341
|
+
gem 'DealMakerAPI', '~> 0.68.6'
|
306
342
|
|
307
343
|
### Install from Git
|
308
344
|
|
@@ -329,16 +365,15 @@ require 'DealMakerAPI'
|
|
329
365
|
# Setup authorization
|
330
366
|
DealMakerAPI.configure do |config|end
|
331
367
|
|
332
|
-
api_instance = DealMakerAPI::
|
333
|
-
|
334
|
-
unknown_base_type = TODO # UNKNOWN_BASE_TYPE |
|
368
|
+
api_instance = DealMakerAPI::CompanyApi.new
|
369
|
+
create_company_request = DealMakerAPI::CreateCompanyRequest.new({name: 'name_example', country: 'country_example', street: 'street_example', city: 'city_example', state: 'state_example', postal_code: 'postal_code_example'}) # CreateCompanyRequest |
|
335
370
|
|
336
371
|
begin
|
337
|
-
#Create
|
338
|
-
result = api_instance.
|
372
|
+
#Create new company
|
373
|
+
result = api_instance.create_company(create_company_request)
|
339
374
|
p result
|
340
375
|
rescue DealMakerAPI::ApiError => e
|
341
|
-
puts "Exception when calling
|
376
|
+
puts "Exception when calling CompanyApi->create_company: #{e}"
|
342
377
|
end
|
343
378
|
|
344
379
|
```
|
@@ -349,27 +384,86 @@ All URIs are relative to *http://api.dealmaker.tech*
|
|
349
384
|
|
350
385
|
Class | Method | HTTP request | Description
|
351
386
|
------------ | ------------- | ------------- | -------------
|
352
|
-
*DealMakerAPI::
|
353
|
-
*DealMakerAPI::
|
354
|
-
*DealMakerAPI::
|
355
|
-
*DealMakerAPI::DealApi* | [**
|
356
|
-
*DealMakerAPI::
|
387
|
+
*DealMakerAPI::CompanyApi* | [**create_company**](docs/CompanyApi.md#create_company) | **POST** /companies | Create new company
|
388
|
+
*DealMakerAPI::CompanyApi* | [**get_companies**](docs/CompanyApi.md#get_companies) | **GET** /companies | Get list of Companies
|
389
|
+
*DealMakerAPI::CompanyApi* | [**get_company**](docs/CompanyApi.md#get_company) | **GET** /companies/{id} | Get a Company
|
390
|
+
*DealMakerAPI::DealApi* | [**get_deal**](docs/DealApi.md#get_deal) | **GET** /deals/{id} | Get deal by Deal ID
|
391
|
+
*DealMakerAPI::DealApi* | [**list_deals**](docs/DealApi.md#list_deals) | **GET** /deals | List available deals
|
392
|
+
*DealMakerAPI::DealSetupApi* | [**create_deal_setup**](docs/DealSetupApi.md#create_deal_setup) | **POST** /deal_setups | Create deal setup
|
393
|
+
*DealMakerAPI::DefaultApi* | [**get_webhooks**](docs/DefaultApi.md#get_webhooks) | **GET** /webhooks | Returns a list of webhook subscription which is associated to the user
|
394
|
+
*DealMakerAPI::DefaultApi* | [**get_webhooks_deal_id**](docs/DefaultApi.md#get_webhooks_deal_id) | **GET** /webhooks/deal/{id} | Finds a deal using the id
|
395
|
+
*DealMakerAPI::DefaultApi* | [**get_webhooks_deals_search**](docs/DefaultApi.md#get_webhooks_deals_search) | **GET** /webhooks/deals/search | Searches for deals for a given user
|
396
|
+
*DealMakerAPI::DefaultApi* | [**get_webhooks_security_token**](docs/DefaultApi.md#get_webhooks_security_token) | **GET** /webhooks/security_token | Creates a new security token for webhook subscription
|
397
|
+
*DealMakerAPI::DefaultApi* | [**post_webhooks**](docs/DefaultApi.md#post_webhooks) | **POST** /webhooks | Creates a webhook subscription which is associated to the user
|
398
|
+
*DealMakerAPI::DefaultApi* | [**put_webhooks_id**](docs/DefaultApi.md#put_webhooks_id) | **PUT** /webhooks/{id} | Updates webhook subscription and webhooks subcription deals
|
399
|
+
*DealMakerAPI::InvestorApi* | [**create_investor**](docs/InvestorApi.md#create_investor) | **POST** /deals/{id}/investors | Create a deal investor
|
400
|
+
*DealMakerAPI::InvestorApi* | [**get_investor**](docs/InvestorApi.md#get_investor) | **GET** /deals/{id}/investors/{investor_id} | Get a deal investor by id
|
401
|
+
*DealMakerAPI::InvestorApi* | [**list_investors**](docs/InvestorApi.md#list_investors) | **GET** /deals/{id}/investors | List deal investors
|
402
|
+
*DealMakerAPI::InvestorApi* | [**patch_investor**](docs/InvestorApi.md#patch_investor) | **PATCH** /deals/{id}/investors/{investor_id} | Patch a deal investor
|
403
|
+
*DealMakerAPI::InvestorApi* | [**update_investor**](docs/InvestorApi.md#update_investor) | **PUT** /deals/{id}/investors/{investor_id} | Update a deal investor
|
404
|
+
*DealMakerAPI::InvestorProfileApi* | [**create_corporation_profile**](docs/InvestorProfileApi.md#create_corporation_profile) | **POST** /investor_profiles/corporations | Create new corporation investor profile.
|
405
|
+
*DealMakerAPI::InvestorProfileApi* | [**create_individual_profile**](docs/InvestorProfileApi.md#create_individual_profile) | **POST** /investor_profiles/individuals | Create new individual investor profile
|
406
|
+
*DealMakerAPI::InvestorProfileApi* | [**create_joint_profile**](docs/InvestorProfileApi.md#create_joint_profile) | **POST** /investor_profiles/joints | Create new joint investor profile
|
407
|
+
*DealMakerAPI::InvestorProfileApi* | [**create_trust_profile**](docs/InvestorProfileApi.md#create_trust_profile) | **POST** /investor_profiles/trusts | Create new trust investor profile.
|
408
|
+
*DealMakerAPI::InvestorProfileApi* | [**get_investor_profiles**](docs/InvestorProfileApi.md#get_investor_profiles) | **GET** /investor_profiles | Get list of InvestorProfiles
|
409
|
+
*DealMakerAPI::InvestorProfileApi* | [**patch_corporation_profile**](docs/InvestorProfileApi.md#patch_corporation_profile) | **PATCH** /investor_profiles/corporations/{investor_profile_id} | Patch a corporation investor profile
|
410
|
+
*DealMakerAPI::InvestorProfileApi* | [**patch_individual_profile**](docs/InvestorProfileApi.md#patch_individual_profile) | **PATCH** /investor_profiles/individuals/{investor_profile_id} | Patch an individual investor profile.
|
411
|
+
*DealMakerAPI::InvestorProfileApi* | [**patch_joint_profile**](docs/InvestorProfileApi.md#patch_joint_profile) | **PATCH** /investor_profiles/joints/{investor_profile_id} | Patch a joint investor profile
|
412
|
+
*DealMakerAPI::InvestorProfileApi* | [**patch_trust_profile**](docs/InvestorProfileApi.md#patch_trust_profile) | **PATCH** /investor_profiles/trusts/{investor_profile_id} | Patch a trust investor profile
|
357
413
|
|
358
414
|
|
359
415
|
## Documentation for Models
|
360
416
|
|
417
|
+
- [DealMakerAPI::CreateCompanyRequest](docs/CreateCompanyRequest.md)
|
418
|
+
- [DealMakerAPI::CreateCorporationProfileRequest](docs/CreateCorporationProfileRequest.md)
|
419
|
+
- [DealMakerAPI::CreateDealSetupRequest](docs/CreateDealSetupRequest.md)
|
420
|
+
- [DealMakerAPI::CreateIndividualProfileRequest](docs/CreateIndividualProfileRequest.md)
|
421
|
+
- [DealMakerAPI::CreateInvestorRequest](docs/CreateInvestorRequest.md)
|
422
|
+
- [DealMakerAPI::CreateJointProfileRequest](docs/CreateJointProfileRequest.md)
|
423
|
+
- [DealMakerAPI::CreateTrustProfileRequest](docs/CreateTrustProfileRequest.md)
|
424
|
+
- [DealMakerAPI::PatchCorporationProfileRequest](docs/PatchCorporationProfileRequest.md)
|
425
|
+
- [DealMakerAPI::PatchIndividualProfileRequest](docs/PatchIndividualProfileRequest.md)
|
426
|
+
- [DealMakerAPI::PatchInvestorRequest](docs/PatchInvestorRequest.md)
|
427
|
+
- [DealMakerAPI::PatchJointProfileRequest](docs/PatchJointProfileRequest.md)
|
428
|
+
- [DealMakerAPI::PatchTrustProfileRequest](docs/PatchTrustProfileRequest.md)
|
429
|
+
- [DealMakerAPI::PostWebhooksRequest](docs/PostWebhooksRequest.md)
|
430
|
+
- [DealMakerAPI::PutWebhooksIdRequest](docs/PutWebhooksIdRequest.md)
|
431
|
+
- [DealMakerAPI::UpdateInvestorRequest](docs/UpdateInvestorRequest.md)
|
432
|
+
- [DealMakerAPI::V1EntitiesAddress](docs/V1EntitiesAddress.md)
|
433
|
+
- [DealMakerAPI::V1EntitiesAddresses](docs/V1EntitiesAddresses.md)
|
361
434
|
- [DealMakerAPI::V1EntitiesAttachment](docs/V1EntitiesAttachment.md)
|
362
435
|
- [DealMakerAPI::V1EntitiesBackgroundCheckSearch](docs/V1EntitiesBackgroundCheckSearch.md)
|
436
|
+
- [DealMakerAPI::V1EntitiesCompany](docs/V1EntitiesCompany.md)
|
437
|
+
- [DealMakerAPI::V1EntitiesCompanyDeal](docs/V1EntitiesCompanyDeal.md)
|
438
|
+
- [DealMakerAPI::V1EntitiesCompanyDeals](docs/V1EntitiesCompanyDeals.md)
|
363
439
|
- [DealMakerAPI::V1EntitiesDeal](docs/V1EntitiesDeal.md)
|
364
440
|
- [DealMakerAPI::V1EntitiesDealEnterprise](docs/V1EntitiesDealEnterprise.md)
|
365
441
|
- [DealMakerAPI::V1EntitiesDealFundingMetrics](docs/V1EntitiesDealFundingMetrics.md)
|
366
442
|
- [DealMakerAPI::V1EntitiesDealInvestorMetrics](docs/V1EntitiesDealInvestorMetrics.md)
|
367
443
|
- [DealMakerAPI::V1EntitiesDealIssuer](docs/V1EntitiesDealIssuer.md)
|
444
|
+
- [DealMakerAPI::V1EntitiesDealSetup](docs/V1EntitiesDealSetup.md)
|
445
|
+
- [DealMakerAPI::V1EntitiesDealSetupUser](docs/V1EntitiesDealSetupUser.md)
|
446
|
+
- [DealMakerAPI::V1EntitiesDeals](docs/V1EntitiesDeals.md)
|
368
447
|
- [DealMakerAPI::V1EntitiesInvestor](docs/V1EntitiesInvestor.md)
|
448
|
+
- [DealMakerAPI::V1EntitiesInvestorProfileAddress](docs/V1EntitiesInvestorProfileAddress.md)
|
449
|
+
- [DealMakerAPI::V1EntitiesInvestorProfileCorporation](docs/V1EntitiesInvestorProfileCorporation.md)
|
450
|
+
- [DealMakerAPI::V1EntitiesInvestorProfileFieldsAccountHolder](docs/V1EntitiesInvestorProfileFieldsAccountHolder.md)
|
451
|
+
- [DealMakerAPI::V1EntitiesInvestorProfileFieldsCorporation](docs/V1EntitiesInvestorProfileFieldsCorporation.md)
|
452
|
+
- [DealMakerAPI::V1EntitiesInvestorProfileFieldsPrimaryHolder](docs/V1EntitiesInvestorProfileFieldsPrimaryHolder.md)
|
453
|
+
- [DealMakerAPI::V1EntitiesInvestorProfileFieldsTrust](docs/V1EntitiesInvestorProfileFieldsTrust.md)
|
369
454
|
- [DealMakerAPI::V1EntitiesInvestorProfileIndividual](docs/V1EntitiesInvestorProfileIndividual.md)
|
455
|
+
- [DealMakerAPI::V1EntitiesInvestorProfileItem](docs/V1EntitiesInvestorProfileItem.md)
|
456
|
+
- [DealMakerAPI::V1EntitiesInvestorProfileJoint](docs/V1EntitiesInvestorProfileJoint.md)
|
457
|
+
- [DealMakerAPI::V1EntitiesInvestorProfileTrust](docs/V1EntitiesInvestorProfileTrust.md)
|
458
|
+
- [DealMakerAPI::V1EntitiesInvestorProfiles](docs/V1EntitiesInvestorProfiles.md)
|
370
459
|
- [DealMakerAPI::V1EntitiesInvestorUser](docs/V1EntitiesInvestorUser.md)
|
371
460
|
- [DealMakerAPI::V1EntitiesInvestors](docs/V1EntitiesInvestors.md)
|
372
461
|
- [DealMakerAPI::V1EntitiesSubscriptionAgreement](docs/V1EntitiesSubscriptionAgreement.md)
|
462
|
+
- [DealMakerAPI::V1EntitiesWebhooksDeal](docs/V1EntitiesWebhooksDeal.md)
|
463
|
+
- [DealMakerAPI::V1EntitiesWebhooksSecurityToken](docs/V1EntitiesWebhooksSecurityToken.md)
|
464
|
+
- [DealMakerAPI::V1EntitiesWebhooksSubscription](docs/V1EntitiesWebhooksSubscription.md)
|
465
|
+
- [DealMakerAPI::V1EntitiesWebhooksSubscriptionDeal](docs/V1EntitiesWebhooksSubscriptionDeal.md)
|
466
|
+
- [DealMakerAPI::V1EntitiesWebhooksSubscriptionDeals](docs/V1EntitiesWebhooksSubscriptionDeals.md)
|
373
467
|
|
374
468
|
|
375
469
|
## Documentation for Authorization
|