DealMakerAPI 0.106.2 → 0.106.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +14 -5
  3. data/docs/CampaignApi.md +67 -0
  4. data/docs/DealApi.md +138 -0
  5. data/docs/PatchPlatformEmailRequest.md +24 -0
  6. data/docs/ReservationApi.md +71 -4
  7. data/docs/V1EntitiesDealsPlatformEmail.md +30 -0
  8. data/docs/V1EntitiesDealsPlatformEmails.md +18 -0
  9. data/docs/V1EntitiesTtwCampaignList.md +18 -0
  10. data/docs/V1EntitiesTtwCampaignResponse.md +5 -1
  11. data/docs/{V1EntitiesTtwReservation.md → V1EntitiesTtwReservationCreate.md} +5 -3
  12. data/docs/V1EntitiesTtwReservationResponse.md +36 -0
  13. data/lib/DealMakerAPI/api/campaign_api.rb +63 -0
  14. data/lib/DealMakerAPI/api/deal_api.rb +143 -0
  15. data/lib/DealMakerAPI/api/reservation_api.rb +66 -3
  16. data/lib/DealMakerAPI/models/patch_platform_email_request.rb +307 -0
  17. data/lib/DealMakerAPI/models/v1_entities_deals_platform_email.rb +322 -0
  18. data/lib/DealMakerAPI/models/v1_entities_deals_platform_emails.rb +215 -0
  19. data/lib/DealMakerAPI/models/{v1_entities_ttw_reservation.rb → v1_entities_ttw_campaign_list.rb} +11 -12
  20. data/lib/DealMakerAPI/models/v1_entities_ttw_campaign_response.rb +29 -9
  21. data/lib/DealMakerAPI/models/v1_entities_ttw_reservation_create.rb +226 -0
  22. data/lib/DealMakerAPI/models/v1_entities_ttw_reservation_response.rb +306 -0
  23. data/lib/DealMakerAPI/version.rb +1 -1
  24. data/lib/DealMakerAPI.rb +6 -1
  25. data/spec/api/campaign_api_spec.rb +12 -0
  26. data/spec/api/deal_api_spec.rb +26 -0
  27. data/spec/api/reservation_api_spec.rb +13 -1
  28. data/spec/models/patch_platform_email_request_spec.rb +58 -0
  29. data/spec/models/v1_entities_deals_platform_email_spec.rb +80 -0
  30. data/spec/models/v1_entities_deals_platform_emails_spec.rb +36 -0
  31. data/spec/models/{v1_entities_ttw_reservation_spec.rb → v1_entities_ttw_campaign_list_spec.rb} +7 -7
  32. data/spec/models/v1_entities_ttw_campaign_response_spec.rb +12 -0
  33. data/spec/models/v1_entities_ttw_reservation_create_spec.rb +42 -0
  34. data/spec/models/v1_entities_ttw_reservation_response_spec.rb +90 -0
  35. metadata +26 -6
@@ -81,5 +81,68 @@ module DealMakerAPI
81
81
  end
82
82
  return data, status_code, headers
83
83
  end
84
+
85
+ # Gets a list TTW campaigns for a given company
86
+ # Gets a list TTW campaigns for a given company
87
+ # @param company_id [Integer]
88
+ # @param [Hash] opts the optional parameters
89
+ # @return [V1EntitiesTtwCampaignList]
90
+ def get_ttw_campaigns(company_id, opts = {})
91
+ data, _status_code, _headers = get_ttw_campaigns_with_http_info(company_id, opts)
92
+ data
93
+ end
94
+
95
+ # Gets a list TTW campaigns for a given company
96
+ # Gets a list TTW campaigns for a given company
97
+ # @param company_id [Integer]
98
+ # @param [Hash] opts the optional parameters
99
+ # @return [Array<(V1EntitiesTtwCampaignList, Integer, Hash)>] V1EntitiesTtwCampaignList data, response status code and response headers
100
+ def get_ttw_campaigns_with_http_info(company_id, opts = {})
101
+ if @api_client.config.debugging
102
+ @api_client.config.logger.debug 'Calling API: CampaignApi.get_ttw_campaigns ...'
103
+ end
104
+ # verify the required parameter 'company_id' is set
105
+ if @api_client.config.client_side_validation && company_id.nil?
106
+ fail ArgumentError, "Missing the required parameter 'company_id' when calling CampaignApi.get_ttw_campaigns"
107
+ end
108
+ # resource path
109
+ local_var_path = '/ttw/companies/{company_id}/campaigns'.sub('{' + 'company_id' + '}', CGI.escape(company_id.to_s))
110
+
111
+ # query parameters
112
+ query_params = opts[:query_params] || {}
113
+
114
+ # header parameters
115
+ header_params = opts[:header_params] || {}
116
+ # HTTP header 'Accept' (if needed)
117
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
118
+
119
+ # form parameters
120
+ form_params = opts[:form_params] || {}
121
+
122
+ # http body (model)
123
+ post_body = opts[:debug_body]
124
+
125
+ # return_type
126
+ return_type = opts[:debug_return_type] || 'V1EntitiesTtwCampaignList'
127
+
128
+ # auth_names
129
+ auth_names = opts[:debug_auth_names] || []
130
+
131
+ new_options = opts.merge(
132
+ :operation => :"CampaignApi.get_ttw_campaigns",
133
+ :header_params => header_params,
134
+ :query_params => query_params,
135
+ :form_params => form_params,
136
+ :body => post_body,
137
+ :auth_names => auth_names,
138
+ :return_type => return_type
139
+ )
140
+
141
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
142
+ if @api_client.config.debugging
143
+ @api_client.config.logger.debug "API called: CampaignApi#get_ttw_campaigns\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
144
+ end
145
+ return data, status_code, headers
146
+ end
84
147
  end
85
148
  end
@@ -431,5 +431,148 @@ module DealMakerAPI
431
431
  end
432
432
  return data, status_code, headers
433
433
  end
434
+
435
+ # Get a list of platform emails for the deal
436
+ # Get a list of platform emails for the deal
437
+ # @param id [Integer] The deal id.
438
+ # @param [Hash] opts the optional parameters
439
+ # @return [V1EntitiesDealsPlatformEmails]
440
+ def list_platform_emails(id, opts = {})
441
+ data, _status_code, _headers = list_platform_emails_with_http_info(id, opts)
442
+ data
443
+ end
444
+
445
+ # Get a list of platform emails for the deal
446
+ # Get a list of platform emails for the deal
447
+ # @param id [Integer] The deal id.
448
+ # @param [Hash] opts the optional parameters
449
+ # @return [Array<(V1EntitiesDealsPlatformEmails, Integer, Hash)>] V1EntitiesDealsPlatformEmails data, response status code and response headers
450
+ def list_platform_emails_with_http_info(id, opts = {})
451
+ if @api_client.config.debugging
452
+ @api_client.config.logger.debug 'Calling API: DealApi.list_platform_emails ...'
453
+ end
454
+ # verify the required parameter 'id' is set
455
+ if @api_client.config.client_side_validation && id.nil?
456
+ fail ArgumentError, "Missing the required parameter 'id' when calling DealApi.list_platform_emails"
457
+ end
458
+ # resource path
459
+ local_var_path = '/deals/{id}/platform_emails'.sub('{' + 'id' + '}', CGI.escape(id.to_s))
460
+
461
+ # query parameters
462
+ query_params = opts[:query_params] || {}
463
+
464
+ # header parameters
465
+ header_params = opts[:header_params] || {}
466
+ # HTTP header 'Accept' (if needed)
467
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
468
+
469
+ # form parameters
470
+ form_params = opts[:form_params] || {}
471
+
472
+ # http body (model)
473
+ post_body = opts[:debug_body]
474
+
475
+ # return_type
476
+ return_type = opts[:debug_return_type] || 'V1EntitiesDealsPlatformEmails'
477
+
478
+ # auth_names
479
+ auth_names = opts[:debug_auth_names] || []
480
+
481
+ new_options = opts.merge(
482
+ :operation => :"DealApi.list_platform_emails",
483
+ :header_params => header_params,
484
+ :query_params => query_params,
485
+ :form_params => form_params,
486
+ :body => post_body,
487
+ :auth_names => auth_names,
488
+ :return_type => return_type
489
+ )
490
+
491
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
492
+ if @api_client.config.debugging
493
+ @api_client.config.logger.debug "API called: DealApi#list_platform_emails\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
494
+ end
495
+ return data, status_code, headers
496
+ end
497
+
498
+ # Patch platform email by kind and deal.
499
+ # Patch platform email by kind and deal.
500
+ # @param id [Integer]
501
+ # @param kind [Integer]
502
+ # @param patch_platform_email_request [PatchPlatformEmailRequest]
503
+ # @param [Hash] opts the optional parameters
504
+ # @return [V1EntitiesDealsPlatformEmail]
505
+ def patch_platform_email(id, kind, patch_platform_email_request, opts = {})
506
+ data, _status_code, _headers = patch_platform_email_with_http_info(id, kind, patch_platform_email_request, opts)
507
+ data
508
+ end
509
+
510
+ # Patch platform email by kind and deal.
511
+ # Patch platform email by kind and deal.
512
+ # @param id [Integer]
513
+ # @param kind [Integer]
514
+ # @param patch_platform_email_request [PatchPlatformEmailRequest]
515
+ # @param [Hash] opts the optional parameters
516
+ # @return [Array<(V1EntitiesDealsPlatformEmail, Integer, Hash)>] V1EntitiesDealsPlatformEmail data, response status code and response headers
517
+ def patch_platform_email_with_http_info(id, kind, patch_platform_email_request, opts = {})
518
+ if @api_client.config.debugging
519
+ @api_client.config.logger.debug 'Calling API: DealApi.patch_platform_email ...'
520
+ end
521
+ # verify the required parameter 'id' is set
522
+ if @api_client.config.client_side_validation && id.nil?
523
+ fail ArgumentError, "Missing the required parameter 'id' when calling DealApi.patch_platform_email"
524
+ end
525
+ # verify the required parameter 'kind' is set
526
+ if @api_client.config.client_side_validation && kind.nil?
527
+ fail ArgumentError, "Missing the required parameter 'kind' when calling DealApi.patch_platform_email"
528
+ end
529
+ # verify the required parameter 'patch_platform_email_request' is set
530
+ if @api_client.config.client_side_validation && patch_platform_email_request.nil?
531
+ fail ArgumentError, "Missing the required parameter 'patch_platform_email_request' when calling DealApi.patch_platform_email"
532
+ end
533
+ # resource path
534
+ local_var_path = '/deals/{id}/platform_emails/{kind}/update'.sub('{' + 'id' + '}', CGI.escape(id.to_s)).sub('{' + 'kind' + '}', CGI.escape(kind.to_s))
535
+
536
+ # query parameters
537
+ query_params = opts[:query_params] || {}
538
+
539
+ # header parameters
540
+ header_params = opts[:header_params] || {}
541
+ # HTTP header 'Accept' (if needed)
542
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
543
+ # HTTP header 'Content-Type'
544
+ content_type = @api_client.select_header_content_type(['application/json'])
545
+ if !content_type.nil?
546
+ header_params['Content-Type'] = content_type
547
+ end
548
+
549
+ # form parameters
550
+ form_params = opts[:form_params] || {}
551
+
552
+ # http body (model)
553
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(patch_platform_email_request)
554
+
555
+ # return_type
556
+ return_type = opts[:debug_return_type] || 'V1EntitiesDealsPlatformEmail'
557
+
558
+ # auth_names
559
+ auth_names = opts[:debug_auth_names] || []
560
+
561
+ new_options = opts.merge(
562
+ :operation => :"DealApi.patch_platform_email",
563
+ :header_params => header_params,
564
+ :query_params => query_params,
565
+ :form_params => form_params,
566
+ :body => post_body,
567
+ :auth_names => auth_names,
568
+ :return_type => return_type
569
+ )
570
+
571
+ data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, new_options)
572
+ if @api_client.config.debugging
573
+ @api_client.config.logger.debug "API called: DealApi#patch_platform_email\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
574
+ end
575
+ return data, status_code, headers
576
+ end
434
577
  end
435
578
  end
@@ -23,7 +23,7 @@ module DealMakerAPI
23
23
  # Create a new reservation
24
24
  # @param create_reservation_request [CreateReservationRequest]
25
25
  # @param [Hash] opts the optional parameters
26
- # @return [V1EntitiesTtwReservation]
26
+ # @return [V1EntitiesTtwReservationCreate]
27
27
  def create_reservation(create_reservation_request, opts = {})
28
28
  data, _status_code, _headers = create_reservation_with_http_info(create_reservation_request, opts)
29
29
  data
@@ -33,7 +33,7 @@ module DealMakerAPI
33
33
  # Create a new reservation
34
34
  # @param create_reservation_request [CreateReservationRequest]
35
35
  # @param [Hash] opts the optional parameters
36
- # @return [Array<(V1EntitiesTtwReservation, Integer, Hash)>] V1EntitiesTtwReservation data, response status code and response headers
36
+ # @return [Array<(V1EntitiesTtwReservationCreate, Integer, Hash)>] V1EntitiesTtwReservationCreate data, response status code and response headers
37
37
  def create_reservation_with_http_info(create_reservation_request, opts = {})
38
38
  if @api_client.config.debugging
39
39
  @api_client.config.logger.debug 'Calling API: ReservationApi.create_reservation ...'
@@ -65,7 +65,7 @@ module DealMakerAPI
65
65
  post_body = opts[:debug_body] || @api_client.object_to_http_body(create_reservation_request)
66
66
 
67
67
  # return_type
68
- return_type = opts[:debug_return_type] || 'V1EntitiesTtwReservation'
68
+ return_type = opts[:debug_return_type] || 'V1EntitiesTtwReservationCreate'
69
69
 
70
70
  # auth_names
71
71
  auth_names = opts[:debug_auth_names] || []
@@ -86,5 +86,68 @@ module DealMakerAPI
86
86
  end
87
87
  return data, status_code, headers
88
88
  end
89
+
90
+ # Gets a TTW reservation
91
+ # Gets a TTW reservation
92
+ # @param id [Integer]
93
+ # @param [Hash] opts the optional parameters
94
+ # @return [V1EntitiesTtwReservationResponse]
95
+ def get_ttw_reservation(id, opts = {})
96
+ data, _status_code, _headers = get_ttw_reservation_with_http_info(id, opts)
97
+ data
98
+ end
99
+
100
+ # Gets a TTW reservation
101
+ # Gets a TTW reservation
102
+ # @param id [Integer]
103
+ # @param [Hash] opts the optional parameters
104
+ # @return [Array<(V1EntitiesTtwReservationResponse, Integer, Hash)>] V1EntitiesTtwReservationResponse data, response status code and response headers
105
+ def get_ttw_reservation_with_http_info(id, opts = {})
106
+ if @api_client.config.debugging
107
+ @api_client.config.logger.debug 'Calling API: ReservationApi.get_ttw_reservation ...'
108
+ end
109
+ # verify the required parameter 'id' is set
110
+ if @api_client.config.client_side_validation && id.nil?
111
+ fail ArgumentError, "Missing the required parameter 'id' when calling ReservationApi.get_ttw_reservation"
112
+ end
113
+ # resource path
114
+ local_var_path = '/ttw/reservations/{id}'.sub('{' + 'id' + '}', CGI.escape(id.to_s))
115
+
116
+ # query parameters
117
+ query_params = opts[:query_params] || {}
118
+
119
+ # header parameters
120
+ header_params = opts[:header_params] || {}
121
+ # HTTP header 'Accept' (if needed)
122
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
123
+
124
+ # form parameters
125
+ form_params = opts[:form_params] || {}
126
+
127
+ # http body (model)
128
+ post_body = opts[:debug_body]
129
+
130
+ # return_type
131
+ return_type = opts[:debug_return_type] || 'V1EntitiesTtwReservationResponse'
132
+
133
+ # auth_names
134
+ auth_names = opts[:debug_auth_names] || []
135
+
136
+ new_options = opts.merge(
137
+ :operation => :"ReservationApi.get_ttw_reservation",
138
+ :header_params => header_params,
139
+ :query_params => query_params,
140
+ :form_params => form_params,
141
+ :body => post_body,
142
+ :auth_names => auth_names,
143
+ :return_type => return_type
144
+ )
145
+
146
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
147
+ if @api_client.config.debugging
148
+ @api_client.config.logger.debug "API called: ReservationApi#get_ttw_reservation\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
149
+ end
150
+ return data, status_code, headers
151
+ end
89
152
  end
90
153
  end
@@ -0,0 +1,307 @@
1
+ =begin
2
+ #DealMaker API
3
+
4
+ ## Introduction 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. # Libraries - Javascript - Ruby # Authentication 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 ## Create an Application DealMaker’s Web API v1 supports the use of OAuth applications. Applications can be generated in your [account](https://app.dealmaker.tech/developer/applications). 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 ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-1.png) Name your application and assign the level of permissions for this application ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-2.png) Once your application is created, save in a secure space your client ID and secret. **WARNING**: The secret key will not be visible after you click the close button ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-3.png) From the developer tab, you will be able to view and manage all the available applications ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-4.png) 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. ## How to generate an access token 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: `token endpoint` - https://app.dealmaker.tech/oauth/token `grant_type` - must be set to `client_credentials` `client_id` - the Client ID displayed when you created the OAuth application in the previous step `client_secret` - the Client Secret displayed when you created the OAuth application in the previous step `scope` - the scope is established when you created the OAuth application in the previous step 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. 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. ### Example #### Postman 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) ![Get access token postman example](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/token-postman.png) # Status Codes ## Content-Type Header All responses are returned in JSON format. We specify this by sending the Content-Type header. ## Status Codes Below is a table containing descriptions of the various status codes we currently support against various resources. 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. | Status Code | Description | | ----------- | ----------- | | `200` | Success | | `403` | Forbidden | | `404` | Not found | # Pagination 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. 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. Please review the table below for the input parameters ## Inputs | Parameter | Description | | ---------- | ------------------------------------------------------------------------------- | | `per_page` | Amount of records included on each page (Default is 25) | | `page` | Page number | | `offset` | Amount of records offset on the API request where 0 represents the first record | ## Response Headers | Response Header | Description | | --------------- | -------------------------------------------- | | `X-Total` | Total number of records of response | | `X-Total-Pages` | Total number of pages of response | | `X-Per-Page` | Total number of records per page of response | | `X-Page` | Number of current page | | `X-Next-Page` | Number of next page | | `X-Prev-Page` | Number of previous page | | `X-Offset` | Total number of records offset | # Search and Filtering (The q parameter) 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&#64;dealmaker.tech\" should be passed as “john%2Binvestor%40dealmaker.tech”. There are two main ways to filter with it. ## Keyword filtering 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. Here’s a list of possible keywords and the “scope” each one of the keywords filters by: | Keywords | Scope | Decoded Example | Encoded Example | | ---------------------------------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | | 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` | | 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` | | 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` | | Offline | Investors added to the deal offline | Offline | `Offline` | | Online | Investors added to the deal online | Online | `Online` | | Signed | Investors who signed their agreement | Signed | `Signed` | | Waiting for countersignature | Investors who have signed and are waiting for counter signature | Waiting for countersignature | `Waiting%20for%20countersignature` | | Invited | Investors on the Invited Status | Invited | `Invited` | | Accepted | Investors in the Accepted Status | Accepted | `Accepted` | | Questionnaire in progress | All Investors who have not finished completing the questionnaire | Questionnaire in progress | `Questionnaire%20in%20progress` | | Has attachments | All Investors with attachments | Has attachments | `Has%20attachments` | | Has notes | All Investors with notes | Has notes | `Has%20notes` | | Waiting for co-signature | Investors who have signed and are waiting for co-signature | Waiting for co-signature | `Waiting%20for%20co-signature` | | Background Check Approved | Investors with approved background check | Background Check Approved | `Background%20Check%20Approved` | | Document Review Pending | Investors with pending review | Document Review Pending | `Document%20Review%20Pending` | | Document Upload Pending | Investors with pending documents to upload | Document Upload Pending | `Document%20Upload%20Pending` | | Required adjudicator review | Investors who are required to be review by the adjudicator | Required adjudicator review | `Required%20adjudicator%20review` | --- **NOTE** Filtering keywords are case sensitive and need to be encoded --- ## Search String 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. 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. # Versioning The latest version is v1. The version can be updated on the `Accept` header, just set the version as stated on the following example: ``` Accept:application/vnd.dealmaker-v1+json ``` | Version | Accept Header | | ------- | ----------------------------------- | | `v1` | application/vnd.dealmaker-`v1`+json | # SDK’s For instruction on installing SDKs, please view the following links - [Javascript](https://github.com/DealMakerTech/api/tree/main/v1/clients/javascript) - [Ruby](https://github.com/DealMakerTech/api/tree/main/v1/clients/ruby) # Webhooks Our webhooks functionality allows clients to automatically receive updates on a deal's investor data. Some of the data that the webhooks include: - Investor Name - Date created - Email - Phone - Allocation - Attachments - Accredited investor status - Accredited investor category - State (Draft, Invited, Signed, Accepted, Waiting, Inactive) Via webhooks clients can subscribe to the following events as they happen on Dealmaker: - Investor is created - Investor details are updated (any of the investor details above change or are updated) - Investor has signed their agreement - Invertor fully funded their investment - Investor has been accepted - Investor is deleted 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. ## Configuration 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). As a developer user on DealMaker, you are able to configure webhooks by following the steps below: 1. Sign into Dealmaker 2. Go to **“Your profile”** in the top right corner 3. Access an **“Integrations”** configuration via the left menu 4. The developer configures webhooks by including: - The HTTPS URL where the request will be sent - 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. - The Deal(s) to include in the webhook subscription - An email address that will be used to notify about errors. 5. The developers can disable webhooks temporarily if needed ## Specification ### Events The initial set of events will be related to the investor. The events are: 1. `investor.created` - Triggers every time a new investor is added to a deal 2. `investor.updated` - Triggers on updates to any of the following fields: - Status - Name - Email - (this is a user field so we trigger event for all investors with webhook subscription) - Allocated Amount - Investment Amount - Accredited investor fields - Adding or removing attachments - Tags - When the investor status is signed, the payload also includes a link to the signed document; the link expires after 30 minutes 3. `investor.signed` - Triggers when the investor signs their subscription agreement (terms and conditions) - When this happens the investor.state becomes `signed` - This event includes the same fields as the `investor.updated` event 4. `investor.funded` - Triggers when the investor becomes fully funded - This happens when the investor.funded_state becomes `funded` - This event includes the same fields as the `investor.updated` event 5. `investor.accepted` - Triggers when the investor is countersigned - When this happens the investor.state becomes `accepted` - This event includes the same fields as the `investor.updated` event 6. `investor.deleted` - Triggers when the investor is removed from the deal - The investor key of the payload only includes investor ID - The deal is not included in the payload. Due to our implementation it’s impossible to retrieve the deal the investor was part of ### Requests - The request is a `POST` - The payload’s `content-type` is `application/json` - Only `2XX` responses are considered successful. In the event of a different response, we consider it failed and queue the event for retry - 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 - If an event fails all the attempts to be delivered, we send an email to the address that the user configured ### Payload #### Common Properties There will be some properties that are common to all the events on the system. | Key | Type | Description | | ----------------- | ------ | -------------------------------------------------------------------------------------- | | event | String | The event that triggered the call | | event_id | String | A unique identifier for the event | | deal<sup>\\*</sup> | Object | The deal in which the event occurred. please see below for an example on the deal object<sup>\\*\\*</sup> | <sup>\\*</sup>This field is not included when deleting a resource <sup>\\*\\*</sup> Sample Deal Object in the webhook payload ```json \"deal\": { \"id\": 0, \"title\": \"string\", \"created_at\": \"2022-12-06T18:14:44.000Z\", \"updated_at\": \"2022-12-08T12:46:48.000Z\", \"state\": \"string\", \"currency\": \"string\", \"security_type\": \"string\", \"price_per_security\": 0.00, \"deal_type\": \"string\", \"minimum_investment\": 0, \"maximum_investment\": 0, \"issuer\": { \"id\": 0, \"name\": \"string\" }, \"enterprise\": { \"id\": 0, \"name\": \"string\" } } ``` #### Common Properties (investor scope) By design, we have incorporated on the webhooks payload the same investor-related fields included in the Investor model, for reference on the included fields, their types and values please click [here](https://docs.dealmaker.tech/#tag/investor_model). This will allow you to get all the necessary information you need about a particular investor without having to call the Get Investor by ID endpoint. | #### Investor State Here is a brief description of each investor state: - **Draft:** the investor is added to the platform but hasn't been invited yet and cannot access the portal - **Invited:** the investor was added to the platform but hasn’t completed the questionnaire - **Signed:** the investor signed the document (needs approval from Lawyer or Reviewer before countersignature) - **Waiting:** the investor was approved for countersignature by any of the Lawyers or Reviewers in the deal - **Accepted:** the investor's agreement was countersigned by the Signatory - **Inactive** the investor is no longer eligible to participate in the offering. This may be because their warrant expired, they requested a refund, or they opted out of the offering #### Update Delay 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.
5
+
6
+ The version of the OpenAPI document: 1.75.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.8.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module DealMakerAPI
17
+ class PatchPlatformEmailRequest
18
+ # Specifies if platform email is enabled.
19
+ attr_accessor :enabled
20
+
21
+ # The platform email subject.
22
+ attr_accessor :subject
23
+
24
+ # The number of reminder_type periods of platform email.
25
+ attr_accessor :reminder_number
26
+
27
+ # The reminder type of platform email.
28
+ attr_accessor :reminder_type
29
+
30
+ class EnumAttributeValidator
31
+ attr_reader :datatype
32
+ attr_reader :allowable_values
33
+
34
+ def initialize(datatype, allowable_values)
35
+ @allowable_values = allowable_values.map do |value|
36
+ case datatype.to_s
37
+ when /Integer/i
38
+ value.to_i
39
+ when /Float/i
40
+ value.to_f
41
+ else
42
+ value
43
+ end
44
+ end
45
+ end
46
+
47
+ def valid?(value)
48
+ !value || allowable_values.include?(value)
49
+ end
50
+ end
51
+
52
+ # Attribute mapping from ruby-style variable name to JSON key.
53
+ def self.attribute_map
54
+ {
55
+ :'enabled' => :'enabled',
56
+ :'subject' => :'subject',
57
+ :'reminder_number' => :'reminder_number',
58
+ :'reminder_type' => :'reminder_type'
59
+ }
60
+ end
61
+
62
+ # Returns all the JSON keys this model knows about
63
+ def self.acceptable_attributes
64
+ attribute_map.values
65
+ end
66
+
67
+ # Attribute type mapping.
68
+ def self.openapi_types
69
+ {
70
+ :'enabled' => :'Boolean',
71
+ :'subject' => :'String',
72
+ :'reminder_number' => :'Integer',
73
+ :'reminder_type' => :'String'
74
+ }
75
+ end
76
+
77
+ # List of attributes with nullable: true
78
+ def self.openapi_nullable
79
+ Set.new([
80
+ ])
81
+ end
82
+
83
+ # Initializes the object
84
+ # @param [Hash] attributes Model attributes in the form of hash
85
+ def initialize(attributes = {})
86
+ if (!attributes.is_a?(Hash))
87
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DealMakerAPI::PatchPlatformEmailRequest` initialize method"
88
+ end
89
+
90
+ # check to see if the attribute exists and convert string to symbol for hash key
91
+ attributes = attributes.each_with_object({}) { |(k, v), h|
92
+ if (!self.class.attribute_map.key?(k.to_sym))
93
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DealMakerAPI::PatchPlatformEmailRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
94
+ end
95
+ h[k.to_sym] = v
96
+ }
97
+
98
+ if attributes.key?(:'enabled')
99
+ self.enabled = attributes[:'enabled']
100
+ else
101
+ self.enabled = nil
102
+ end
103
+
104
+ if attributes.key?(:'subject')
105
+ self.subject = attributes[:'subject']
106
+ else
107
+ self.subject = nil
108
+ end
109
+
110
+ if attributes.key?(:'reminder_number')
111
+ self.reminder_number = attributes[:'reminder_number']
112
+ else
113
+ self.reminder_number = nil
114
+ end
115
+
116
+ if attributes.key?(:'reminder_type')
117
+ self.reminder_type = attributes[:'reminder_type']
118
+ else
119
+ self.reminder_type = nil
120
+ end
121
+ end
122
+
123
+ # Show invalid properties with the reasons. Usually used together with valid?
124
+ # @return Array for valid properties with the reasons
125
+ def list_invalid_properties
126
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
127
+ invalid_properties = Array.new
128
+ if @enabled.nil?
129
+ invalid_properties.push('invalid value for "enabled", enabled cannot be nil.')
130
+ end
131
+
132
+ if @subject.nil?
133
+ invalid_properties.push('invalid value for "subject", subject cannot be nil.')
134
+ end
135
+
136
+ if @reminder_number.nil?
137
+ invalid_properties.push('invalid value for "reminder_number", reminder_number cannot be nil.')
138
+ end
139
+
140
+ if @reminder_type.nil?
141
+ invalid_properties.push('invalid value for "reminder_type", reminder_type cannot be nil.')
142
+ end
143
+
144
+ invalid_properties
145
+ end
146
+
147
+ # Check to see if the all the properties in the model are valid
148
+ # @return true if the model is valid
149
+ def valid?
150
+ warn '[DEPRECATED] the `valid?` method is obsolete'
151
+ return false if @enabled.nil?
152
+ return false if @subject.nil?
153
+ return false if @reminder_number.nil?
154
+ return false if @reminder_type.nil?
155
+ reminder_type_validator = EnumAttributeValidator.new('String', ["day", "week"])
156
+ return false unless reminder_type_validator.valid?(@reminder_type)
157
+ true
158
+ end
159
+
160
+ # Custom attribute writer method checking allowed values (enum).
161
+ # @param [Object] reminder_type Object to be assigned
162
+ def reminder_type=(reminder_type)
163
+ validator = EnumAttributeValidator.new('String', ["day", "week"])
164
+ unless validator.valid?(reminder_type)
165
+ fail ArgumentError, "invalid value for \"reminder_type\", must be one of #{validator.allowable_values}."
166
+ end
167
+ @reminder_type = reminder_type
168
+ end
169
+
170
+ # Checks equality by comparing each attribute.
171
+ # @param [Object] Object to be compared
172
+ def ==(o)
173
+ return true if self.equal?(o)
174
+ self.class == o.class &&
175
+ enabled == o.enabled &&
176
+ subject == o.subject &&
177
+ reminder_number == o.reminder_number &&
178
+ reminder_type == o.reminder_type
179
+ end
180
+
181
+ # @see the `==` method
182
+ # @param [Object] Object to be compared
183
+ def eql?(o)
184
+ self == o
185
+ end
186
+
187
+ # Calculates hash code according to all attributes.
188
+ # @return [Integer] Hash code
189
+ def hash
190
+ [enabled, subject, reminder_number, reminder_type].hash
191
+ end
192
+
193
+ # Builds the object from hash
194
+ # @param [Hash] attributes Model attributes in the form of hash
195
+ # @return [Object] Returns the model itself
196
+ def self.build_from_hash(attributes)
197
+ return nil unless attributes.is_a?(Hash)
198
+ attributes = attributes.transform_keys(&:to_sym)
199
+ transformed_hash = {}
200
+ openapi_types.each_pair do |key, type|
201
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
202
+ transformed_hash["#{key}"] = nil
203
+ elsif type =~ /\AArray<(.*)>/i
204
+ # check to ensure the input is an array given that the attribute
205
+ # is documented as an array but the input is not
206
+ if attributes[attribute_map[key]].is_a?(Array)
207
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
208
+ end
209
+ elsif !attributes[attribute_map[key]].nil?
210
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
211
+ end
212
+ end
213
+ new(transformed_hash)
214
+ end
215
+
216
+ # Deserializes the data based on type
217
+ # @param string type Data type
218
+ # @param string value Value to be deserialized
219
+ # @return [Object] Deserialized data
220
+ def self._deserialize(type, value)
221
+ case type.to_sym
222
+ when :Time
223
+ Time.parse(value)
224
+ when :Date
225
+ Date.parse(value)
226
+ when :String
227
+ value.to_s
228
+ when :Integer
229
+ value.to_i
230
+ when :Float
231
+ value.to_f
232
+ when :Boolean
233
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
234
+ true
235
+ else
236
+ false
237
+ end
238
+ when :Object
239
+ # generic object (usually a Hash), return directly
240
+ value
241
+ when /\AArray<(?<inner_type>.+)>\z/
242
+ inner_type = Regexp.last_match[:inner_type]
243
+ value.map { |v| _deserialize(inner_type, v) }
244
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
245
+ k_type = Regexp.last_match[:k_type]
246
+ v_type = Regexp.last_match[:v_type]
247
+ {}.tap do |hash|
248
+ value.each do |k, v|
249
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
250
+ end
251
+ end
252
+ else # model
253
+ # models (e.g. Pet) or oneOf
254
+ klass = DealMakerAPI.const_get(type)
255
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
256
+ end
257
+ end
258
+
259
+ # Returns the string representation of the object
260
+ # @return [String] String presentation of the object
261
+ def to_s
262
+ to_hash.to_s
263
+ end
264
+
265
+ # to_body is an alias to to_hash (backward compatibility)
266
+ # @return [Hash] Returns the object in the form of hash
267
+ def to_body
268
+ to_hash
269
+ end
270
+
271
+ # Returns the object in the form of hash
272
+ # @return [Hash] Returns the object in the form of hash
273
+ def to_hash
274
+ hash = {}
275
+ self.class.attribute_map.each_pair do |attr, param|
276
+ value = self.send(attr)
277
+ if value.nil?
278
+ is_nullable = self.class.openapi_nullable.include?(attr)
279
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
280
+ end
281
+
282
+ hash[param] = _to_hash(value)
283
+ end
284
+ hash
285
+ end
286
+
287
+ # Outputs non-array value in the form of hash
288
+ # For object, use to_hash. Otherwise, just return the value
289
+ # @param [Object] value Any valid value
290
+ # @return [Hash] Returns the value in the form of hash
291
+ def _to_hash(value)
292
+ if value.is_a?(Array)
293
+ value.compact.map { |v| _to_hash(v) }
294
+ elsif value.is_a?(Hash)
295
+ {}.tap do |hash|
296
+ value.each { |k, v| hash[k] = _to_hash(v) }
297
+ end
298
+ elsif value.respond_to? :to_hash
299
+ value.to_hash
300
+ else
301
+ value
302
+ end
303
+ end
304
+
305
+ end
306
+
307
+ end