payabli 2.2.30 → 2.2.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f98122afd376d3b8d6603e062521de83c172d88d74ae0c2f9c8751dffb1cd733
4
- data.tar.gz: 938bf824a70139fdc3230e53346cf35f869dee2d0153f396478da4f41537f154
3
+ metadata.gz: 65a6a51b90d2388fcf09b7f0aa9de18cb30ce545459abb58c2372dd8587dab85
4
+ data.tar.gz: 33889d6badf048b9d3e7e4fad702f5570842587fa68fe3e8c710d4bcbc3b735f
5
5
  SHA512:
6
- metadata.gz: bf7f55d27df12feda51fa579430da5bf71c830ad039a53dfb83ddeb117227a6b197e32a8e970150ef5b8c6c36ea8903c263838f46d83f5dd8e12dd04f7b846f6
7
- data.tar.gz: accc230a43d7b4f3819405aee91286d058ec075eeffc4fbd19fc84d381580f089592376a552048e631ae488a5ce1269eb06727ea26c2423c866936633441f0d3
6
+ metadata.gz: 2e9ac87020343c7264f274b1df4c23800fbb15070a3b22c1d60112237cbbdfa531d437fa96dfa02acfbeb2dea24e04d69418c12ba746c1c8e28e55a2df94dad6
7
+ data.tar.gz: 1430e213d0e53e6d67f33f0f03a6423cd4f2055ef7d8c109d97a5032d503252d939062ff456d0244d9e126d62edfd0c81c85edd79e2f2823510624d92292fe81
data/.fern/metadata.json CHANGED
@@ -6,10 +6,8 @@
6
6
  "enableWireTests": true,
7
7
  "rubocopVariableNumberStyle": "snake_case"
8
8
  },
9
- "originGitCommit": "8b5226b68ed23f55f2b2cdf29490c8b0cd0c5a14",
9
+ "originGitCommit": "59a35aa03f5ab140800723e4add1a7933b8cf351",
10
10
  "originGitCommitIsDirty": true,
11
- "invokedBy": "ci",
12
- "requestedVersion": "2.2.30",
13
- "ciProvider": "github",
14
- "sdkVersion": "2.2.30"
11
+ "invokedBy": "manual",
12
+ "sdkVersion": "2.2.32"
15
13
  }
@@ -10,7 +10,7 @@ module Payabli
10
10
  @raw_client = Payabli::Internal::Http::RawClient.new(
11
11
  base_url: base_url || Payabli::Environment::SANDBOX,
12
12
  headers: {
13
- "User-Agent" => "payabli/2.2.30",
13
+ "User-Agent" => "payabli/2.2.32",
14
14
  "X-Fern-Language" => "Ruby",
15
15
  requestToken: api_key.to_s
16
16
  }
@@ -60,7 +60,7 @@ module Payabli
60
60
  end
61
61
  end
62
62
 
63
- # Deletes an invoice that's attached to a file.
63
+ # Deletes a file attached to an invoice.
64
64
  #
65
65
  # @param request_options [Hash]
66
66
  # @param params [Hash]
@@ -11,7 +11,7 @@ module Payabli
11
11
 
12
12
  field :is_valid, -> { Internal::Types::Boolean }, optional: false, nullable: false, api_name: "isValid"
13
13
 
14
- field :error_message, -> { String }, optional: true, nullable: false, api_name: "errorMessage"
14
+ field :error_message, -> { String }, optional: false, nullable: true, api_name: "errorMessage"
15
15
 
16
16
  field :verification_response, -> { String }, optional: true, nullable: false, api_name: "verificationResponse"
17
17
 
@@ -21,15 +21,15 @@ module Payabli
21
21
 
22
22
  field :response_description, -> { String }, optional: true, nullable: false, api_name: "responseDescription"
23
23
 
24
- field :bank_name, -> { String }, optional: true, nullable: false, api_name: "bankName"
24
+ field :bank_name, -> { String }, optional: false, nullable: true, api_name: "bankName"
25
25
 
26
- field :reported_account_type, -> { String }, optional: true, nullable: false, api_name: "reportedAccountType"
26
+ field :reported_account_type, -> { String }, optional: false, nullable: true, api_name: "reportedAccountType"
27
27
 
28
- field :account_added_date, -> { String }, optional: true, nullable: false, api_name: "accountAddedDate"
28
+ field :account_added_date, -> { String }, optional: false, nullable: true, api_name: "accountAddedDate"
29
29
 
30
- field :account_last_updated_date, -> { String }, optional: true, nullable: false, api_name: "accountLastUpdatedDate"
30
+ field :account_last_updated_date, -> { String }, optional: false, nullable: true, api_name: "accountLastUpdatedDate"
31
31
 
32
- field :account_closed_date, -> { String }, optional: true, nullable: false, api_name: "accountClosedDate"
32
+ field :account_closed_date, -> { String }, optional: false, nullable: true, api_name: "accountClosedDate"
33
33
  end
34
34
  end
35
35
  end
@@ -10,7 +10,7 @@ module Payabli
10
10
  @client = client
11
11
  end
12
12
 
13
- # Create a new notification or autogenerated report.
13
+ # Create a new notification or auto-generated report.
14
14
  #
15
15
  # @param request_options [Hash]
16
16
  # @param params [Payabli::Notification::Types::AddNotificationRequest]
@@ -44,7 +44,7 @@ module Payabli
44
44
  end
45
45
  end
46
46
 
47
- # Deletes a single notification or autogenerated report.
47
+ # Deletes a single notification or auto-generated report.
48
48
  #
49
49
  # @param request_options [Hash]
50
50
  # @param params [Hash]
@@ -78,7 +78,7 @@ module Payabli
78
78
  end
79
79
  end
80
80
 
81
- # Retrieves a single notification or autogenerated report's details.
81
+ # Retrieves a single notification or auto-generated report's details.
82
82
  #
83
83
  # @param request_options [Hash]
84
84
  # @param params [Hash]
@@ -112,7 +112,7 @@ module Payabli
112
112
  end
113
113
  end
114
114
 
115
- # Update a notification or autogenerated report.
115
+ # Update a notification or auto-generated report.
116
116
  #
117
117
  # @param request_options [Hash]
118
118
  # @param params [Payabli::Notification::Types::UpdateNotificationRequest]
@@ -160,7 +160,7 @@ module Payabli
160
160
  end
161
161
  end
162
162
 
163
- # Gets an organizations basic details by org ID.
163
+ # Gets an organization's basic details by org ID.
164
164
  #
165
165
  # @param request_options [Hash]
166
166
  # @param params [Hash]
@@ -117,7 +117,7 @@ module Payabli
117
117
  end
118
118
  end
119
119
 
120
- # Gets the details for single payment page for a paypoint.
120
+ # Gets the details for a single payment page for a paypoint.
121
121
  #
122
122
  # @param request_options [Hash]
123
123
  # @param params [Hash]
@@ -222,7 +222,7 @@ module Payabli
222
222
  end
223
223
  end
224
224
 
225
- # Retrieves an paypoint's basic settings like custom fields, identifiers, and invoicing settings.
225
+ # Retrieves a paypoint's basic settings like custom fields, identifiers, and invoicing settings.
226
226
  #
227
227
  # @param request_options [Hash]
228
228
  # @param params [Hash]
@@ -77,7 +77,7 @@ module Payabli
77
77
  # @option params [Hash[String, String, nil], nil] :parameters
78
78
  # @option params [String, nil] :sort_by
79
79
  #
80
- # @return [Payabli::Types::QueryResponseSettlements]
80
+ # @return [Payabli::QueryTypes::Types::QueryBatchesDetailResponse]
81
81
  def list_batch_details_org(request_options: {}, **params)
82
82
  params = Payabli::Internal::Types::Utils.normalize_keys(params)
83
83
  query_params = {}
@@ -101,7 +101,7 @@ module Payabli
101
101
  end
102
102
  code = response.code.to_i
103
103
  if code.between?(200, 299)
104
- Payabli::Types::QueryResponseSettlements.load(response.body)
104
+ Payabli::QueryTypes::Types::QueryBatchesDetailResponse.load(response.body)
105
105
  else
106
106
  error_class = Payabli::Errors::ResponseError.subclass_for_code(code)
107
107
  raise error_class.new(response.body, code: code)
@@ -12,7 +12,7 @@ module Payabli
12
12
 
13
13
  field :paypoint_name, -> { String }, optional: true, nullable: false, api_name: "paypointName"
14
14
 
15
- field :paypoint_url, -> { String }, optional: true, nullable: false, api_name: "paypointUrl"
15
+ field :paypoint_url, -> { String }, optional: false, nullable: true, api_name: "paypointUrl"
16
16
 
17
17
  field :marked_for_deletion_at, -> { String }, optional: true, nullable: false, api_name: "markedForDeletionAt"
18
18
 
@@ -13,7 +13,7 @@ module Payabli
13
13
 
14
14
  field :response_text, -> { String }, optional: false, nullable: false, api_name: "responseText"
15
15
 
16
- field :room_id, -> { Integer }, optional: true, nullable: false, api_name: "roomId"
16
+ field :room_id, -> { Integer }, optional: false, nullable: true, api_name: "roomId"
17
17
  end
18
18
  end
19
19
  end
@@ -13,7 +13,7 @@ module Payabli
13
13
 
14
14
  field :response_text, -> { String }, optional: false, nullable: false, api_name: "responseText"
15
15
 
16
- field :room_id, -> { Integer }, optional: true, nullable: false, api_name: "roomId"
16
+ field :room_id, -> { Integer }, optional: false, nullable: true, api_name: "roomId"
17
17
  end
18
18
  end
19
19
  end
@@ -7,7 +7,7 @@ module Payabli
7
7
 
8
8
  field :event_time, -> { String }, optional: true, nullable: false, api_name: "eventTime"
9
9
 
10
- field :extra_data, -> { Internal::Types::Hash[String, Object] }, optional: true, nullable: false, api_name: "extraData"
10
+ field :extra_data, -> { String }, optional: true, nullable: false, api_name: "extraData"
11
11
 
12
12
  field :ref_data, -> { String }, optional: true, nullable: false, api_name: "refData"
13
13
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Payabli
4
4
  module Types
5
- # Information about the standard notification configuration (email, sms, web).
5
+ # Information about the standard notification configuration (email, SMS, web).
6
6
  class NotificationStandardRequest < Internal::Types::Model
7
7
  field :content, -> { Payabli::Types::NotificationStandardRequestContent }, optional: true, nullable: false
8
8
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Payabli
4
- VERSION = "2.2.30"
4
+ VERSION = "2.2.32"
5
5
  end
data/reference.md CHANGED
@@ -168,22 +168,9 @@ client.bill.delete_attached_from_bill(
168
168
 
169
169
  **filename:** `String`
170
170
 
171
- The filename in Payabli. Filename is `zipName` in response to a
172
- request to `/api/Invoice/{idInvoice}`. Here, the filename is
173
- `0_Bill.pdf`.
174
-
175
- ```json
176
- "DocumentsRef": {
177
- "zipfile": "inva_269.zip",
178
- "filelist": [
179
- {
180
- "originalName": "Bill.pdf",
181
- "zipName": "0_Bill.pdf",
182
- "descriptor": null
183
- }
184
- ]
185
- }
186
- ```
171
+ The filename in Payabli. Get this from the `zipName` field
172
+ in the `DocumentsRef.filelist` array returned by
173
+ `/api/Bill/{idBill}`. Example: `0_Bill.pdf`.
187
174
 
188
175
  </dd>
189
176
  </dl>
@@ -191,7 +178,7 @@ request to `/api/Invoice/{idInvoice}`. Here, the filename is
191
178
  <dl>
192
179
  <dd>
193
180
 
194
- **return_object:** `Internal::Types::Boolean` — When `true`, the request returns the file content as a Base64-encoded string.
181
+ **return_object:** `Internal::Types::Boolean` — When `true`, the response includes the full bill object.
195
182
 
196
183
  </dd>
197
184
  </dl>
@@ -403,17 +390,9 @@ client.bill.get_attached_from_bill(
403
390
 
404
391
  **filename:** `String`
405
392
 
406
- The filename in Payabli. Filename is `zipName` in response to a request to `/api/Invoice/{idInvoice}`. Here, the filename is `0_Bill.pdf``.
407
- "DocumentsRef": {
408
- "zipfile": "inva_269.zip",
409
- "filelist": [
410
- {
411
- "originalName": "Bill.pdf",
412
- "zipName": "0_Bill.pdf",
413
- "descriptor": null
414
- }
415
- ]
416
- }
393
+ The filename in Payabli. Get this from the `zipName` field
394
+ in the `DocumentsRef.filelist` array returned by
395
+ `/api/Bill/{idBill}`. Example: `0_Bill.pdf`.
417
396
 
418
397
  </dd>
419
398
  </dl>
@@ -834,7 +813,7 @@ Modify the list of users the bill is sent to for approval.
834
813
  ```ruby
835
814
  client.bill.modify_approval_bill(
836
815
  id_bill: 285,
837
- request: ["string"]
816
+ request: %w[approver1@example.com approver2@example.com]
838
817
  )
839
818
  ```
840
819
  </dd>
@@ -2328,7 +2307,7 @@ client.charge_backs.get_chargeback(id: 1000000)
2328
2307
  <dl>
2329
2308
  <dd>
2330
2309
 
2331
- **id:** `Integer` — ID of the chargeback or return record. This is returned as `chargebackId` in the [RecievedChargeback](/developers/developer-guides/webhook-payloads#receivedChargeback) and [ReceivedAchReturn](/developers/developer-guides/webhook-payloads#receivedachreturn) webhook notifications.
2310
+ **id:** `Integer` — ID of the chargeback or return record. This is returned as `chargebackID` in the [ReceivedChargeBack](/guides/pay-ops-webhooks-payloads#receivedchargeback) and [ReceivedAchReturn](/guides/pay-ops-webhooks-payloads#receivedachreturn) webhook notifications.
2332
2311
 
2333
2312
  </dd>
2334
2313
  </dl>
@@ -8511,7 +8490,7 @@ client.hosted_payment_pages.load_page(
8511
8490
  <dl>
8512
8491
  <dd>
8513
8492
 
8514
- **subdomain:** `String` — Payment page identifier. The subdomain value is the last part of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
8493
+ **subdomain:** `String` — Payment page identifier. The subdomain value is the last part of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
8515
8494
 
8516
8495
  </dd>
8517
8496
  </dl>
@@ -8667,7 +8646,7 @@ client.hosted_payment_pages.save_page(
8667
8646
  <dl>
8668
8647
  <dd>
8669
8648
 
8670
- **subdomain:** `String` — Payment page identifier. The subdomain value is the last part of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
8649
+ **subdomain:** `String` — Payment page identifier. The subdomain value is the last part of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
8671
8650
 
8672
8651
  </dd>
8673
8652
  </dl>
@@ -9019,7 +8998,7 @@ client.invoice.add_invoice(
9019
8998
  <dl>
9020
8999
  <dd>
9021
9000
 
9022
- Deletes an invoice that's attached to a file.
9001
+ Deletes a file attached to an invoice.
9023
9002
  </dd>
9024
9003
  </dl>
9025
9004
  </dd>
@@ -9062,17 +9041,9 @@ client.invoice.delete_attached_from_invoice(
9062
9041
 
9063
9042
  **filename:** `String`
9064
9043
 
9065
- The filename in Payabli. Filename is `zipName` in response to a request to `/api/Invoice/{idInvoice}`. Here, the filename is `0_Bill.pdf``.
9066
- "DocumentsRef": {
9067
- "zipfile": "inva_269.zip",
9068
- "filelist": [
9069
- {
9070
- "originalName": "Bill.pdf",
9071
- "zipName": "0_Bill.pdf",
9072
- "descriptor": null
9073
- }
9074
- ]
9075
- }
9044
+ The filename in Payabli. Get this from the `zipName` field
9045
+ in the `DocumentsRef.filelist` array returned by
9046
+ `/api/Invoice/{idInvoice}`. Example: `0_Bill.pdf`.
9076
9047
 
9077
9048
  </dd>
9078
9049
  </dl>
@@ -9300,19 +9271,9 @@ client.invoice.get_attached_file_from_invoice(
9300
9271
 
9301
9272
  **filename:** `String`
9302
9273
 
9303
- The filename in Payabli. Filename is `zipName` in the response to a request to `/api/Invoice/{idInvoice}`. Here, the filename is `0_Bill.pdf``.
9304
- ```
9305
- "DocumentsRef": {
9306
- "zipfile": "inva_269.zip",
9307
- "filelist": [
9308
- {
9309
- "originalName": "Bill.pdf",
9310
- "zipName": "0_Bill.pdf",
9311
- "descriptor": null
9312
- }
9313
- ]
9314
- }
9315
- ```
9274
+ The filename in Payabli. Get this from the `zipName` field
9275
+ in the `DocumentsRef.filelist` array returned by
9276
+ `/api/Invoice/{idInvoice}`. Example: `0_Bill.pdf`.
9316
9277
 
9317
9278
  </dd>
9318
9279
  </dl>
@@ -13132,7 +13093,7 @@ client.money_out.reissue_out(
13132
13093
  <dl>
13133
13094
  <dd>
13134
13095
 
13135
- Create a new notification or autogenerated report.
13096
+ Create a new notification or auto-generated report.
13136
13097
  </dd>
13137
13098
  </dl>
13138
13099
  </dd>
@@ -13204,7 +13165,7 @@ client.notification.add_notification(
13204
13165
  <dl>
13205
13166
  <dd>
13206
13167
 
13207
- Deletes a single notification or autogenerated report.
13168
+ Deletes a single notification or auto-generated report.
13208
13169
  </dd>
13209
13170
  </dl>
13210
13171
  </dd>
@@ -13266,7 +13227,7 @@ client.notification.delete_notification(n_id: "1717")
13266
13227
  <dl>
13267
13228
  <dd>
13268
13229
 
13269
- Retrieves a single notification or autogenerated report's details.
13230
+ Retrieves a single notification or auto-generated report's details.
13270
13231
  </dd>
13271
13232
  </dl>
13272
13233
  </dd>
@@ -13328,7 +13289,7 @@ client.notification.get_notification(n_id: "1717")
13328
13289
  <dl>
13329
13290
  <dd>
13330
13291
 
13331
- Update a notification or autogenerated report.
13292
+ Update a notification or auto-generated report.
13332
13293
  </dd>
13333
13294
  </dl>
13334
13295
  </dd>
@@ -14504,7 +14465,7 @@ client.organization.get_basic_organization(entry: "8cfec329267")
14504
14465
  <dl>
14505
14466
  <dd>
14506
14467
 
14507
- Gets an organizations basic details by org ID.
14468
+ Gets an organization's basic details by org ID.
14508
14469
  </dd>
14509
14470
  </dl>
14510
14471
  </dd>
@@ -16487,7 +16448,7 @@ client.payout_subscription.create_payout_subscription(
16487
16448
  due_date: "2025-08-15"
16488
16449
  }],
16489
16450
  schedule_details: {
16490
- start_date: "09/01/2025",
16451
+ start_date: "09/01/2027",
16491
16452
  end_date: "09/01/2026",
16492
16453
  frequency: "monthly"
16493
16454
  }
@@ -16938,7 +16899,7 @@ client.paypoint.get_entry_config(entry: "8cfec329267")
16938
16899
  <dl>
16939
16900
  <dd>
16940
16901
 
16941
- Gets the details for single payment page for a paypoint.
16902
+ Gets the details for a single payment page for a paypoint.
16942
16903
  </dd>
16943
16904
  </dl>
16944
16905
  </dd>
@@ -16979,7 +16940,7 @@ client.paypoint.get_page(
16979
16940
  <dl>
16980
16941
  <dd>
16981
16942
 
16982
- **subdomain:** `String` — Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
16943
+ **subdomain:** `String` — Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
16983
16944
 
16984
16945
  </dd>
16985
16946
  </dl>
@@ -17052,7 +17013,7 @@ client.paypoint.remove_page(
17052
17013
  <dl>
17053
17014
  <dd>
17054
17015
 
17055
- **subdomain:** `String` — Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
17016
+ **subdomain:** `String` — Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
17056
17017
 
17057
17018
  </dd>
17058
17019
  </dl>
@@ -17154,7 +17115,7 @@ client.paypoint.save_logo(entry: "8cfec329267")
17154
17115
  <dl>
17155
17116
  <dd>
17156
17117
 
17157
- Retrieves an paypoint's basic settings like custom fields, identifiers, and invoicing settings.
17118
+ Retrieves a paypoint's basic settings like custom fields, identifiers, and invoicing settings.
17158
17119
  </dd>
17159
17120
  </dl>
17160
17121
  </dd>
@@ -17462,7 +17423,7 @@ Example: `settledAmount(gt)=20` returns all records with a `settledAmount` great
17462
17423
  </dl>
17463
17424
  </details>
17464
17425
 
17465
- <details><summary><code>client.query.<a href="/lib/payabli/query/client.rb">list_batch_details_org</a>(org_id) -> Payabli::Types::QueryResponseSettlements</code></summary>
17426
+ <details><summary><code>client.query.<a href="/lib/payabli/query/client.rb">list_batch_details_org</a>(org_id) -> Payabli::QueryTypes::Types::QueryBatchesDetailResponse</code></summary>
17466
17427
  <dl>
17467
17428
  <dd>
17468
17429
 
@@ -24161,10 +24122,10 @@ Retrieves the basic statistics for an organization or a paypoint, for a given ti
24161
24122
  client.statistic.basic_stats(
24162
24123
  entry_id: 1000000,
24163
24124
  freq: "m",
24164
- level: 1,
24165
- mode: "ytd",
24166
- end_date: "2025-11-01",
24167
- start_date: "2025-11-30"
24125
+ level: 2,
24126
+ mode: "custom",
24127
+ start_date: "2025-11-01",
24128
+ end_date: "2025-11-30"
24168
24129
  )
24169
24130
  ```
24170
24131
  </dd>
@@ -24434,7 +24395,7 @@ Retrieves the subscription statistics for a given interval for a paypoint or org
24434
24395
  client.statistic.sub_stats(
24435
24396
  entry_id: 1000000,
24436
24397
  interval: "30",
24437
- level: 1
24398
+ level: 2
24438
24399
  )
24439
24400
  ```
24440
24401
  </dd>
@@ -24978,7 +24939,7 @@ client.templates.delete_template(template_id: 80)
24978
24939
  <dl>
24979
24940
  <dd>
24980
24941
 
24981
- **template_id:** `Integer` — The boarding template ID. Can be found at the end of the boarding template URL in PartnerHub. Example: `https://partner-sandbox.payabli.com/myorganization/boarding/edittemplate/80`. Here, the template ID is `80`.
24942
+ **template_id:** `Integer` — The boarding template ID. You can find this at the end of the boarding template URL in PartnerHub. Example: `https://partner-sandbox.payabli.com/myorganization/boarding/edittemplate/80`. Here, the template ID is `80`.
24982
24943
 
24983
24944
  </dd>
24984
24945
  </dl>
@@ -25043,7 +25004,7 @@ client.templates.getlink_template(
25043
25004
  <dl>
25044
25005
  <dd>
25045
25006
 
25046
- **template_id:** `Integer` — The boarding template ID. Can be found at the end of the boarding template URL in PartnerHub. Example: `https://partner-sandbox.payabli.com/myorganization/boarding/edittemplate/80`. Here, the template ID is `80`.
25007
+ **template_id:** `Integer` — The boarding template ID. You can find this at the end of the boarding template URL in PartnerHub. Example: `https://partner-sandbox.payabli.com/myorganization/boarding/edittemplate/80`. Here, the template ID is `80`.
25047
25008
 
25048
25009
  </dd>
25049
25010
  </dl>
@@ -25051,7 +25012,7 @@ client.templates.getlink_template(
25051
25012
  <dl>
25052
25013
  <dd>
25053
25014
 
25054
- **ignore_empty:** `Internal::Types::Boolean` — Ignore read-only and empty fields Default is `false`. If `ignoreEmpty` = `false` and any field is empty, then the request returns a failure response. If `ignoreEmpty` = `true`, the request returns the boarding link name regardless of whether fields are empty.
25015
+ **ignore_empty:** `Internal::Types::Boolean` — Ignore read-only and empty fields. Default is `false`. If `ignoreEmpty` = `false` and any field is empty, then the request returns a failure response. If `ignoreEmpty` = `true`, the request returns the boarding link name regardless of whether fields are empty.
25055
25016
 
25056
25017
  </dd>
25057
25018
  </dl>
@@ -25113,7 +25074,7 @@ client.templates.get_template(template_id: 80)
25113
25074
  <dl>
25114
25075
  <dd>
25115
25076
 
25116
- **template_id:** `Integer` — The boarding template ID. Can be found at the end of the boarding template URL in PartnerHub. Example: `https://partner-sandbox.payabli.com/myorganization/boarding/edittemplate/80`. Here, the template ID is `80`.
25077
+ **template_id:** `Integer` — The boarding template ID. You can find this at the end of the boarding template URL in PartnerHub. Example: `https://partner-sandbox.payabli.com/myorganization/boarding/edittemplate/80`. Here, the template ID is `80`.
25117
25078
 
25118
25079
  </dd>
25119
25080
  </dl>
@@ -25881,7 +25842,7 @@ client.user.auth_user(provider: "provider")
25881
25842
  <dl>
25882
25843
  <dd>
25883
25844
 
25884
- **provider:** `String` — Auth provider. This fields is optional and defaults to null for the built-in provider.
25845
+ **provider:** `String` — Auth provider. Pass `null` to use the built-in provider.
25885
25846
 
25886
25847
  </dd>
25887
25848
  </dl>