payabli 2.2.31 → 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 +4 -4
- data/.fern/metadata.json +3 -5
- data/lib/payabli/client.rb +1 -1
- data/lib/payabli/invoice/client.rb +1 -1
- data/lib/payabli/management/types/bank_account_verification_details_response.rb +6 -6
- data/lib/payabli/notification/client.rb +4 -4
- data/lib/payabli/organization/client.rb +1 -1
- data/lib/payabli/paypoint/client.rb +2 -2
- data/lib/payabli/query/client.rb +2 -2
- data/lib/payabli/types/apple_wallet_data.rb +1 -1
- data/lib/payabli/types/configure_apple_paypoint_api_response.rb +1 -1
- data/lib/payabli/types/configure_google_paypoint_api_response.rb +1 -1
- data/lib/payabli/types/notification_standard_request.rb +1 -1
- data/lib/payabli/version.rb +1 -1
- data/reference.md +39 -78
- data/wiremock/wiremock-mappings.json +84 -84
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65a6a51b90d2388fcf09b7f0aa9de18cb30ce545459abb58c2372dd8587dab85
|
|
4
|
+
data.tar.gz: 33889d6badf048b9d3e7e4fad702f5570842587fa68fe3e8c710d4bcbc3b735f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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": "
|
|
9
|
+
"originGitCommit": "59a35aa03f5ab140800723e4add1a7933b8cf351",
|
|
10
10
|
"originGitCommitIsDirty": true,
|
|
11
|
-
"invokedBy": "
|
|
12
|
-
"
|
|
13
|
-
"ciProvider": "github",
|
|
14
|
-
"sdkVersion": "2.2.31"
|
|
11
|
+
"invokedBy": "manual",
|
|
12
|
+
"sdkVersion": "2.2.32"
|
|
15
13
|
}
|
data/lib/payabli/client.rb
CHANGED
|
@@ -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.
|
|
13
|
+
"User-Agent" => "payabli/2.2.32",
|
|
14
14
|
"X-Fern-Language" => "Ruby",
|
|
15
15
|
requestToken: api_key.to_s
|
|
16
16
|
}
|
|
@@ -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:
|
|
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:
|
|
24
|
+
field :bank_name, -> { String }, optional: false, nullable: true, api_name: "bankName"
|
|
25
25
|
|
|
26
|
-
field :reported_account_type, -> { String }, optional:
|
|
26
|
+
field :reported_account_type, -> { String }, optional: false, nullable: true, api_name: "reportedAccountType"
|
|
27
27
|
|
|
28
|
-
field :account_added_date, -> { String }, optional:
|
|
28
|
+
field :account_added_date, -> { String }, optional: false, nullable: true, api_name: "accountAddedDate"
|
|
29
29
|
|
|
30
|
-
field :account_last_updated_date, -> { String }, optional:
|
|
30
|
+
field :account_last_updated_date, -> { String }, optional: false, nullable: true, api_name: "accountLastUpdatedDate"
|
|
31
31
|
|
|
32
|
-
field :account_closed_date, -> { String }, optional:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
115
|
+
# Update a notification or auto-generated report.
|
|
116
116
|
#
|
|
117
117
|
# @param request_options [Hash]
|
|
118
118
|
# @param params [Payabli::Notification::Types::UpdateNotificationRequest]
|
|
@@ -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
|
|
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]
|
data/lib/payabli/query/client.rb
CHANGED
|
@@ -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::
|
|
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::
|
|
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:
|
|
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:
|
|
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:
|
|
16
|
+
field :room_id, -> { Integer }, optional: false, nullable: true, api_name: "roomId"
|
|
17
17
|
end
|
|
18
18
|
end
|
|
19
19
|
end
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
module Payabli
|
|
4
4
|
module Types
|
|
5
|
-
# Information about the standard notification configuration (email,
|
|
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
|
|
data/lib/payabli/version.rb
CHANGED
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.
|
|
172
|
-
|
|
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
|
|
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.
|
|
407
|
-
|
|
408
|
-
|
|
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: [
|
|
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 `
|
|
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
|
|
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.
|
|
9066
|
-
|
|
9067
|
-
|
|
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.
|
|
9304
|
-
|
|
9305
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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/
|
|
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
|
|
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::
|
|
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:
|
|
24165
|
-
mode: "
|
|
24166
|
-
|
|
24167
|
-
|
|
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:
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
25845
|
+
**provider:** `String` — Auth provider. Pass `null` to use the built-in provider.
|
|
25885
25846
|
|
|
25886
25847
|
</dd>
|
|
25887
25848
|
</dl>
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
},
|
|
258
258
|
"response": {
|
|
259
259
|
"status": 200,
|
|
260
|
-
"body": "{\n \"Summary\": {\n \"pageidentifier\": null,\n \"pageSize\": 20,\n \"total2approval\": 1,\n \"totalactive\": 1,\n \"totalAmount\": 1.1,\n \"totalamount2approval\": 1.1,\n \"totalamountactive\": 1.1,\n \"totalamountapproved\": 1.1,\n \"totalamountcancel\": 1.1,\n \"totalamountdisapproved\": 1.1,\n \"totalamountintransit\": 1.1,\n \"totalamountoverdue\": 1.1,\n \"totalamountpaid\": 1.1,\n \"totalamountsent2approval\": 1.1,\n \"totalapproved\": 1,\n \"totalcancel\": 1,\n \"totaldisapproved\": 1,\n \"totalintransit\": 1,\n \"totaloverdue\": 1,\n \"totalPages\": 1,\n \"totalpaid\": 1,\n \"totalRecords\": 2,\n \"totalsent2approval\": 1\n },\n \"Records\": [\n {\n \"AdditionalData\": null,\n \"billApprovals\": [\n {\n \"approved\": 0,\n \"approvedTime\": \"2024-03-13T15:54:27Z\",\n \"email\": \"lisandra@example.com\",\n \"Id\": 34\n },\n {\n \"approved\": 0,\n \"approvedTime\": \"2024-03-13T15:54:27Z\",\n \"email\": \"jccastillo@example.com\",\n \"Id\": 293\n }\n ],\n \"BillDate\": \"2025-03-10\",\n \"billEvents\": [\n {\n \"description\": \"Created Bill\",\n \"eventTime\": \"2024-03-13T15:54:26Z\",\n \"refData\": \"00-45e1c2d8b53b72fafc4082f374e68753-ffea4ba4c2ce63ce-00\"\n },\n {\n \"description\": \"Sent to Approval\",\n \"eventTime\": \"2024-03-13T15:54:28Z\",\n \"refData\": \"00-086a951822211bc2eb1803ed64db9d4f-0f07e0e8c394e481-00\"\n }\n ],\n \"BillItems\": [\n {\n \"itemCommodityCode\": \"Commod-MI-2024031926\",\n \"itemCost\": 200,\n \"itemDescription\": \"Consultation price\",\n \"itemMode\": 0,\n \"itemProductCode\": \"Prod-MI-2024031926\",\n \"itemProductName\": \"Consultation\",\n \"itemQty\": 1,\n \"itemTaxAmount\": 0,\n \"itemTaxRate\": 0,\n \"itemTotalAmount\": 200,\n \"itemUnitOfMeasure\": \"per each\"\n }\n ],\n \"BillNumber\": \"MI-bill-2024031926\",\n \"Comments\": \"PAYBILL\",\n \"CreatedAt\": \"2024-03-13T15:54:26Z\",\n \"Discount\": 0,\n \"DocumentsRef\": null,\n \"DueDate\": \"2025-03-10\",\n \"EndDate\": null,\n \"EntityID\": null,\n \"externalPaypointID\": \"micasa-10\",\n \"Frequency\": \"onetime\",\n \"IdBill\": 6104,\n \"LastUpdated\": \"2024-03-13T10:54:26Z\",\n \"LotNumber\": \"LOT123\",\n \"Mode\": 0,\n \"NetAmount\": 200,\n \"ParentOrgId\": 1001,\n \"ParentOrgName\": \"Fitness Hub\",\n \"PaymentId\": null,\n \"PaymentMethod\": null,\n \"paylinkId\": null,\n \"PaypointDbaname\": \"MiCasa Sports\",\n \"PaypointEntryname\": \"micasa\",\n \"PaypointLegalname\": \"MiCasa Sports LLC\",\n \"Source\": \"web\",\n \"Status\": 2,\n \"Terms\": \"
|
|
260
|
+
"body": "{\n \"Summary\": {\n \"pageidentifier\": null,\n \"pageSize\": 20,\n \"total2approval\": 1,\n \"totalactive\": 1,\n \"totalAmount\": 1.1,\n \"totalamount2approval\": 1.1,\n \"totalamountactive\": 1.1,\n \"totalamountapproved\": 1.1,\n \"totalamountcancel\": 1.1,\n \"totalamountdisapproved\": 1.1,\n \"totalamountintransit\": 1.1,\n \"totalamountoverdue\": 1.1,\n \"totalamountpaid\": 1.1,\n \"totalamountsent2approval\": 1.1,\n \"totalapproved\": 1,\n \"totalcancel\": 1,\n \"totaldisapproved\": 1,\n \"totalintransit\": 1,\n \"totaloverdue\": 1,\n \"totalPages\": 1,\n \"totalpaid\": 1,\n \"totalRecords\": 2,\n \"totalsent2approval\": 1\n },\n \"Records\": [\n {\n \"AdditionalData\": null,\n \"billApprovals\": [\n {\n \"approved\": 0,\n \"approvedTime\": \"2024-03-13T15:54:27Z\",\n \"email\": \"lisandra@example.com\",\n \"Id\": 34\n },\n {\n \"approved\": 0,\n \"approvedTime\": \"2024-03-13T15:54:27Z\",\n \"email\": \"jccastillo@example.com\",\n \"Id\": 293\n }\n ],\n \"BillDate\": \"2025-03-10\",\n \"billEvents\": [\n {\n \"description\": \"Created Bill\",\n \"eventTime\": \"2024-03-13T15:54:26Z\",\n \"refData\": \"00-45e1c2d8b53b72fafc4082f374e68753-ffea4ba4c2ce63ce-00\"\n },\n {\n \"description\": \"Sent to Approval\",\n \"eventTime\": \"2024-03-13T15:54:28Z\",\n \"refData\": \"00-086a951822211bc2eb1803ed64db9d4f-0f07e0e8c394e481-00\"\n }\n ],\n \"BillItems\": [\n {\n \"itemCommodityCode\": \"Commod-MI-2024031926\",\n \"itemCost\": 200,\n \"itemDescription\": \"Consultation price\",\n \"itemMode\": 0,\n \"itemProductCode\": \"Prod-MI-2024031926\",\n \"itemProductName\": \"Consultation\",\n \"itemQty\": 1,\n \"itemTaxAmount\": 0,\n \"itemTaxRate\": 0,\n \"itemTotalAmount\": 200,\n \"itemUnitOfMeasure\": \"per each\"\n }\n ],\n \"BillNumber\": \"MI-bill-2024031926\",\n \"Comments\": \"PAYBILL\",\n \"CreatedAt\": \"2024-03-13T15:54:26Z\",\n \"Discount\": 0,\n \"DocumentsRef\": null,\n \"DueDate\": \"2025-03-10\",\n \"EndDate\": null,\n \"EntityID\": null,\n \"externalPaypointID\": \"micasa-10\",\n \"Frequency\": \"onetime\",\n \"IdBill\": 6104,\n \"LastUpdated\": \"2024-03-13T10:54:26Z\",\n \"LotNumber\": \"LOT123\",\n \"Mode\": 0,\n \"NetAmount\": 200,\n \"ParentOrgId\": 1001,\n \"ParentOrgName\": \"Fitness Hub\",\n \"PaymentId\": null,\n \"PaymentMethod\": null,\n \"paylinkId\": null,\n \"PaypointDbaname\": \"MiCasa Sports\",\n \"PaypointEntryname\": \"micasa\",\n \"PaypointLegalname\": \"MiCasa Sports LLC\",\n \"Source\": \"web\",\n \"Status\": 2,\n \"Terms\": \"NET30\",\n \"TotalAmount\": 200,\n \"Transaction\": null,\n \"Vendor\": {\n \"Address1\": \"1234 Liberdad St.\",\n \"Address2\": \"Suite 100\",\n \"BillingData\": {\n \"accountNumber\": \"12345XXXX\",\n \"bankAccountFunction\": 0,\n \"bankAccountHolderName\": \"Elena Gomez\",\n \"bankAccountHolderType\": \"Business\",\n \"bankName\": \"Michigan Savings Bank\",\n \"id\": 0,\n \"routingAccount\": \"072000326\",\n \"typeAccount\": \"Checking\"\n },\n \"City\": \"Detroit\",\n \"Country\": \"US\",\n \"EIN\": \"XXXXX6789\",\n \"Email\": \"elenag@industriesexample.com\",\n \"InternalReferenceId\": 1215,\n \"Mcc\": \"700\",\n \"Name1\": \"Gomez-Radulescu Industries\",\n \"Name2\": \"Elena\",\n \"Phone\": \"517-555-0123\",\n \"State\": \"MI\",\n \"VendorId\": 8723,\n \"VendorNumber\": \"MI-vendor-2024031926\",\n \"VendorStatus\": 1,\n \"Zip\": \"48201\"\n }\n }\n ]\n}",
|
|
261
261
|
"headers": {
|
|
262
262
|
"Content-Type": "application/json"
|
|
263
263
|
}
|
|
@@ -304,7 +304,7 @@
|
|
|
304
304
|
},
|
|
305
305
|
"response": {
|
|
306
306
|
"status": 200,
|
|
307
|
-
"body": "{\n \"Summary\": {\n \"pageidentifier\": null,\n \"pageSize\": 20,\n \"total2approval\": 1,\n \"totalactive\": 1,\n \"totalAmount\": 1.1,\n \"totalamount2approval\": 1.1,\n \"totalamountactive\": 1.1,\n \"totalamountapproved\": 1.1,\n \"totalamountcancel\": 1.1,\n \"totalamountdisapproved\": 1.1,\n \"totalamountintransit\": 1.1,\n \"totalamountoverdue\": 1.1,\n \"totalamountpaid\": 1.1,\n \"totalamountsent2approval\": 1.1,\n \"totalapproved\": 1,\n \"totalcancel\": 1,\n \"totaldisapproved\": 1,\n \"totalintransit\": 1,\n \"totaloverdue\": 1,\n \"totalPages\": 1,\n \"totalpaid\": 1,\n \"totalRecords\": 2,\n \"totalsent2approval\": 1\n },\n \"Records\": [\n {\n \"AdditionalData\": null,\n \"billApprovals\": [\n {\n \"approved\": 0,\n \"approvedTime\": \"2024-03-13T15:54:27Z\",\n \"email\": \"lisandra@example.com\",\n \"Id\": 34\n },\n {\n \"approved\": 0,\n \"approvedTime\": \"2024-03-13T15:54:27Z\",\n \"email\": \"jccastillo@example.com\",\n \"Id\": 293\n }\n ],\n \"BillDate\": \"2025-03-10\",\n \"billEvents\": [\n {\n \"description\": \"Created Bill\",\n \"eventTime\": \"2024-03-13T15:54:26Z\",\n \"refData\": \"00-45e1c2d8b53b72fafc4082f374e68753-ffea4ba4c2ce63ce-00\"\n },\n {\n \"description\": \"Sent to Approval\",\n \"eventTime\": \"2024-03-13T15:54:28Z\",\n \"refData\": \"00-086a951822211bc2eb1803ed64db9d4f-0f07e0e8c394e481-00\"\n }\n ],\n \"BillItems\": [\n {\n \"itemCommodityCode\": \"Commod-MI-2024031926\",\n \"itemCost\": 200,\n \"itemDescription\": \"Consultation price\",\n \"itemMode\": 0,\n \"itemProductCode\": \"Prod-MI-2024031926\",\n \"itemProductName\": \"Consultation\",\n \"itemQty\": 1,\n \"itemTaxAmount\": 0,\n \"itemTaxRate\": 0,\n \"itemTotalAmount\": 200,\n \"itemUnitOfMeasure\": \"per each\"\n }\n ],\n \"BillNumber\": \"MI-bill-2024031926\",\n \"Comments\": \"PAYBILL\",\n \"CreatedAt\": \"2024-03-13T15:54:26Z\",\n \"Discount\": 0,\n \"DocumentsRef\": null,\n \"DueDate\": \"2025-03-10\",\n \"EndDate\": null,\n \"EntityID\": null,\n \"externalPaypointID\": \"micasa-10\",\n \"Frequency\": \"onetime\",\n \"IdBill\": 6104,\n \"LastUpdated\": \"2024-03-13T10:54:26Z\",\n \"LotNumber\": \"LOT123\",\n \"Mode\": 0,\n \"NetAmount\": 200,\n \"ParentOrgId\": 1001,\n \"ParentOrgName\": \"Fitness Hub\",\n \"PaymentId\": null,\n \"PaymentMethod\": null,\n \"paylinkId\": null,\n \"PaypointDbaname\": \"MiCasa Sports\",\n \"PaypointEntryname\": \"micasa\",\n \"PaypointLegalname\": \"MiCasa Sports LLC\",\n \"Source\": \"web\",\n \"Status\": 2,\n \"Terms\": \"
|
|
307
|
+
"body": "{\n \"Summary\": {\n \"pageidentifier\": null,\n \"pageSize\": 20,\n \"total2approval\": 1,\n \"totalactive\": 1,\n \"totalAmount\": 1.1,\n \"totalamount2approval\": 1.1,\n \"totalamountactive\": 1.1,\n \"totalamountapproved\": 1.1,\n \"totalamountcancel\": 1.1,\n \"totalamountdisapproved\": 1.1,\n \"totalamountintransit\": 1.1,\n \"totalamountoverdue\": 1.1,\n \"totalamountpaid\": 1.1,\n \"totalamountsent2approval\": 1.1,\n \"totalapproved\": 1,\n \"totalcancel\": 1,\n \"totaldisapproved\": 1,\n \"totalintransit\": 1,\n \"totaloverdue\": 1,\n \"totalPages\": 1,\n \"totalpaid\": 1,\n \"totalRecords\": 2,\n \"totalsent2approval\": 1\n },\n \"Records\": [\n {\n \"AdditionalData\": null,\n \"billApprovals\": [\n {\n \"approved\": 0,\n \"approvedTime\": \"2024-03-13T15:54:27Z\",\n \"email\": \"lisandra@example.com\",\n \"Id\": 34\n },\n {\n \"approved\": 0,\n \"approvedTime\": \"2024-03-13T15:54:27Z\",\n \"email\": \"jccastillo@example.com\",\n \"Id\": 293\n }\n ],\n \"BillDate\": \"2025-03-10\",\n \"billEvents\": [\n {\n \"description\": \"Created Bill\",\n \"eventTime\": \"2024-03-13T15:54:26Z\",\n \"refData\": \"00-45e1c2d8b53b72fafc4082f374e68753-ffea4ba4c2ce63ce-00\"\n },\n {\n \"description\": \"Sent to Approval\",\n \"eventTime\": \"2024-03-13T15:54:28Z\",\n \"refData\": \"00-086a951822211bc2eb1803ed64db9d4f-0f07e0e8c394e481-00\"\n }\n ],\n \"BillItems\": [\n {\n \"itemCommodityCode\": \"Commod-MI-2024031926\",\n \"itemCost\": 200,\n \"itemDescription\": \"Consultation price\",\n \"itemMode\": 0,\n \"itemProductCode\": \"Prod-MI-2024031926\",\n \"itemProductName\": \"Consultation\",\n \"itemQty\": 1,\n \"itemTaxAmount\": 0,\n \"itemTaxRate\": 0,\n \"itemTotalAmount\": 200,\n \"itemUnitOfMeasure\": \"per each\"\n }\n ],\n \"BillNumber\": \"MI-bill-2024031926\",\n \"Comments\": \"PAYBILL\",\n \"CreatedAt\": \"2024-03-13T15:54:26Z\",\n \"Discount\": 0,\n \"DocumentsRef\": null,\n \"DueDate\": \"2025-03-10\",\n \"EndDate\": null,\n \"EntityID\": null,\n \"externalPaypointID\": \"micasa-10\",\n \"Frequency\": \"onetime\",\n \"IdBill\": 6104,\n \"LastUpdated\": \"2024-03-13T10:54:26Z\",\n \"LotNumber\": \"LOT123\",\n \"Mode\": 0,\n \"NetAmount\": 200,\n \"ParentOrgId\": 1001,\n \"ParentOrgName\": \"Fitness Hub\",\n \"PaymentId\": null,\n \"PaymentMethod\": null,\n \"paylinkId\": null,\n \"PaypointDbaname\": \"MiCasa Sports\",\n \"PaypointEntryname\": \"micasa\",\n \"PaypointLegalname\": \"MiCasa Sports LLC\",\n \"Source\": \"web\",\n \"Status\": 2,\n \"Terms\": \"NET30\",\n \"TotalAmount\": 200,\n \"Transaction\": null,\n \"Vendor\": {\n \"Address1\": \"1234 Liberdad St.\",\n \"Address2\": \"Suite 100\",\n \"BillingData\": {\n \"accountNumber\": \"12345XXXX\",\n \"bankAccountFunction\": 0,\n \"bankAccountHolderName\": \"Elena Gomez\",\n \"bankAccountHolderType\": \"Business\",\n \"bankName\": \"Michigan Savings Bank\",\n \"id\": 0,\n \"routingAccount\": \"072000326\",\n \"typeAccount\": \"Checking\"\n },\n \"City\": \"Detroit\",\n \"Country\": \"US\",\n \"EIN\": \"XXXXX6789\",\n \"Email\": \"elenag@industriesexample.com\",\n \"InternalReferenceId\": 1215,\n \"Mcc\": \"700\",\n \"Name1\": \"Gomez-Radulescu Industries\",\n \"Name2\": \"Elena\",\n \"Phone\": \"517-555-0123\",\n \"State\": \"MI\",\n \"VendorId\": 8723,\n \"VendorNumber\": \"MI-vendor-2024031926\",\n \"VendorStatus\": 1,\n \"Zip\": \"48201\"\n }\n }\n ]\n}",
|
|
308
308
|
"headers": {
|
|
309
309
|
"Content-Type": "application/json"
|
|
310
310
|
}
|
|
@@ -322,8 +322,8 @@
|
|
|
322
322
|
}
|
|
323
323
|
},
|
|
324
324
|
{
|
|
325
|
-
"id": "
|
|
326
|
-
"name": "Change bill approvers -
|
|
325
|
+
"id": "07639b50-478b-47e7-9b6a-e60420cd1c73",
|
|
326
|
+
"name": "Change bill approvers - ChangeApprovers",
|
|
327
327
|
"request": {
|
|
328
328
|
"urlPathTemplate": "/Bill/approval/{idBill}",
|
|
329
329
|
"method": "PUT",
|
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
"Content-Type": "application/json"
|
|
346
346
|
}
|
|
347
347
|
},
|
|
348
|
-
"uuid": "
|
|
348
|
+
"uuid": "07639b50-478b-47e7-9b6a-e60420cd1c73",
|
|
349
349
|
"persistent": true,
|
|
350
350
|
"priority": 3,
|
|
351
351
|
"metadata": {
|
|
@@ -394,8 +394,8 @@
|
|
|
394
394
|
}
|
|
395
395
|
},
|
|
396
396
|
{
|
|
397
|
-
"id": "
|
|
398
|
-
"name": "Approve or disapprove a bill -
|
|
397
|
+
"id": "e1753eb3-3086-4308-ba88-2f3d003f8420",
|
|
398
|
+
"name": "Approve or disapprove a bill - ApproveBill",
|
|
399
399
|
"request": {
|
|
400
400
|
"urlPathTemplate": "/Bill/approval/{idBill}/{approved}",
|
|
401
401
|
"method": "GET",
|
|
@@ -420,7 +420,7 @@
|
|
|
420
420
|
"Content-Type": "application/json"
|
|
421
421
|
}
|
|
422
422
|
},
|
|
423
|
-
"uuid": "
|
|
423
|
+
"uuid": "e1753eb3-3086-4308-ba88-2f3d003f8420",
|
|
424
424
|
"persistent": true,
|
|
425
425
|
"priority": 3,
|
|
426
426
|
"metadata": {
|
|
@@ -970,7 +970,7 @@
|
|
|
970
970
|
},
|
|
971
971
|
"response": {
|
|
972
972
|
"status": 200,
|
|
973
|
-
"body": "{\n \"Id\": 201,\n \"ChargebackDate\": \"2022-06-25T00:00:00Z\",\n \"CaseNumber\": \"TZ45678\",\n \"ReasonCode\": \"reasonCode\",\n \"Reason\": \"Buyer dispute\",\n \"ReferenceNumber\": \"referenceNumber\",\n \"LastFour\": \"6789\",\n \"AccountType\": \"visa\",\n \"Status\": 1,\n \"Method\": \"card\",\n \"CreatedAt\": \"2022-07-01T15:00:01Z\",\n \"ReplyBy\": \"2022-07-15T23:59:59Z\",\n \"PaymentTransId\": \"226-fe55ec0348e34702bd91b4be198ce7ec\",\n \"ScheduleReference\": 0,\n \"OrderId\": \"O-5140\",\n \"NetAmount\": 3762.87,\n \"TransactionTime\": \"2024-01-15T09:30:00Z\",\n \"Customer\": {\n \"AdditionalData\": null,\n \"BillingAddress1\": \"1111 West 1st Street\",\n \"BillingAddress2\": \"Suite 200\",\n \"BillingCity\": \"Miami\",\n \"BillingCountry\": \"US\",\n \"BillingEmail\": \"example@email.com\",\n \"BillingPhone\": \"5555555555\",\n \"BillingState\": \"FL\",\n \"BillingZip\": \"45567\",\n \"CompanyName\": \"Sunshine LLC\",\n \"customerId\": 4440,\n \"CustomerNumber\": \"3456-7645A\",\n \"customerStatus\": 1,\n \"FirstName\": \"John\",\n \"Identifiers\": [\n \"firstname\",\n \"lastname\",\n \"email\",\n \"customId\"\n ],\n \"LastName\": \"Doe\",\n \"ShippingAddress1\": \"123 Walnut St\",\n \"ShippingAddress2\": \"STE 900\",\n \"ShippingCity\": \"Johnson City\",\n \"ShippingCountry\": \"US\",\n \"ShippingState\": \"TN\",\n \"ShippingZip\": \"37619\"\n },\n \"PaymentData\": {\n \"AccountExp\": \"11/29\",\n \"accountId\": \"accountId\",\n \"AccountType\": \"visa\",\n \"AccountZip\": \"90210\",\n \"binData\": {\n \"binMatchedLength\": \"6\",\n \"binCardBrand\": \"Visa\",\n \"binCardType\": \"Credit\",\n \"binCardCategory\": \"PLATINUM\",\n \"binCardIssuer\": \"Bank of Example\",\n \"binCardIssuerCountry\": \"United States\",\n \"binCardIssuerCountryCodeA2\": \"US\",\n \"binCardIssuerCountryNumber\": \"840\",\n \"binCardIsRegulated\": \"false\",\n \"binCardUseCategory\": \"Consumer\",\n \"binCardIssuerCountryCodeA3\": \"USA\"\n },\n \"HolderName\": \"Chad Mercia\",\n \"Initiator\": \"payor\",\n \"MaskedAccount\": \"4XXXXXXXX1111\",\n \"orderDescription\": \"
|
|
973
|
+
"body": "{\n \"Id\": 201,\n \"ChargebackDate\": \"2022-06-25T00:00:00Z\",\n \"CaseNumber\": \"TZ45678\",\n \"ReasonCode\": \"reasonCode\",\n \"Reason\": \"Buyer dispute\",\n \"ReferenceNumber\": \"referenceNumber\",\n \"LastFour\": \"6789\",\n \"AccountType\": \"visa\",\n \"Status\": 1,\n \"Method\": \"card\",\n \"CreatedAt\": \"2022-07-01T15:00:01Z\",\n \"ReplyBy\": \"2022-07-15T23:59:59Z\",\n \"PaymentTransId\": \"226-fe55ec0348e34702bd91b4be198ce7ec\",\n \"ScheduleReference\": 0,\n \"OrderId\": \"O-5140\",\n \"NetAmount\": 3762.87,\n \"TransactionTime\": \"2024-01-15T09:30:00Z\",\n \"Customer\": {\n \"AdditionalData\": null,\n \"BillingAddress1\": \"1111 West 1st Street\",\n \"BillingAddress2\": \"Suite 200\",\n \"BillingCity\": \"Miami\",\n \"BillingCountry\": \"US\",\n \"BillingEmail\": \"example@email.com\",\n \"BillingPhone\": \"5555555555\",\n \"BillingState\": \"FL\",\n \"BillingZip\": \"45567\",\n \"CompanyName\": \"Sunshine LLC\",\n \"customerId\": 4440,\n \"CustomerNumber\": \"3456-7645A\",\n \"customerStatus\": 1,\n \"FirstName\": \"John\",\n \"Identifiers\": [\n \"firstname\",\n \"lastname\",\n \"email\",\n \"customId\"\n ],\n \"LastName\": \"Doe\",\n \"ShippingAddress1\": \"123 Walnut St\",\n \"ShippingAddress2\": \"STE 900\",\n \"ShippingCity\": \"Johnson City\",\n \"ShippingCountry\": \"US\",\n \"ShippingState\": \"TN\",\n \"ShippingZip\": \"37619\"\n },\n \"PaymentData\": {\n \"AccountExp\": \"11/29\",\n \"accountId\": \"accountId\",\n \"AccountType\": \"visa\",\n \"AccountZip\": \"90210\",\n \"binData\": {\n \"binMatchedLength\": \"6\",\n \"binCardBrand\": \"Visa\",\n \"binCardType\": \"Credit\",\n \"binCardCategory\": \"PLATINUM\",\n \"binCardIssuer\": \"Bank of Example\",\n \"binCardIssuerCountry\": \"United States\",\n \"binCardIssuerCountryCodeA2\": \"US\",\n \"binCardIssuerCountryNumber\": \"840\",\n \"binCardIsRegulated\": \"false\",\n \"binCardUseCategory\": \"Consumer\",\n \"binCardIssuerCountryCodeA3\": \"USA\"\n },\n \"HolderName\": \"Chad Mercia\",\n \"Initiator\": \"payor\",\n \"MaskedAccount\": \"4XXXXXXXX1111\",\n \"orderDescription\": \"Deposit for materials for 123 Walnut St\",\n \"paymentDetails\": {\n \"categories\": [\n {\n \"amount\": 1000,\n \"label\": \"Deposit\"\n }\n ],\n \"checkImage\": {\n \"key\": \"value\"\n },\n \"checkNumber\": \"107\",\n \"currency\": \"USD\",\n \"serviceFee\": 0,\n \"splitFunding\": [\n {}\n ],\n \"totalAmount\": 100\n },\n \"Sequence\": \"subsequent\",\n \"SignatureData\": \"SignatureData\",\n \"StoredId\": \"1ec55af9-7b5a-4ff0-81ed-c12d2f95e135-4440\",\n \"StoredMethodUsageType\": \"subscription\"\n },\n \"PaypointLegalname\": \"Sunshine Services, LLC\",\n \"PaypointDbaname\": \"Sunshine Gutters\",\n \"ParentOrgName\": \"PropertyManager Pro\",\n \"ParentOrgId\": 123,\n \"PaypointEntryname\": \"d193cf9a46\",\n \"Responses\": [\n {\n \"contactEmail\": \"example@email.com\",\n \"contactName\": \"John Doe\",\n \"createdAt\": \"2022-07-01T15:00:01Z\",\n \"id\": 672,\n \"notes\": \"any note here\"\n }\n ],\n \"Transaction\": {\n \"AchHolderType\": \"personal\",\n \"AchSecCode\": \"AchSecCode\",\n \"BatchAmount\": 30.22,\n \"BatchNumber\": \"batch_226_ach_12-30-2023\",\n \"CfeeTransactions\": [\n {\n \"transactionTime\": \"2024-01-15T09:30:00Z\"\n }\n ],\n \"ConnectorName\": \"gp\",\n \"Customer\": {\n \"AdditionalData\": null,\n \"BillingAddress1\": \"1111 West 1st Street\",\n \"BillingAddress2\": \"Suite 200\",\n \"BillingCity\": \"Miami\",\n \"BillingCountry\": \"US\",\n \"BillingEmail\": \"example@email.com\",\n \"BillingPhone\": \"5555555555\",\n \"BillingState\": \"FL\",\n \"BillingZip\": \"45567\",\n \"CompanyName\": \"Sunshine LLC\",\n \"customerId\": 4440,\n \"CustomerNumber\": \"3456-7645A\",\n \"customerStatus\": 1,\n \"FirstName\": \"John\",\n \"Identifiers\": [\n \"firstname\",\n \"lastname\",\n \"email\",\n \"customId\"\n ],\n \"LastName\": \"Doe\",\n \"ShippingAddress1\": \"123 Walnut St\",\n \"ShippingAddress2\": \"STE 900\",\n \"ShippingCity\": \"Johnson City\",\n \"ShippingCountry\": \"US\",\n \"ShippingState\": \"TN\",\n \"ShippingZip\": \"37619\"\n },\n \"DeviceId\": \"6c361c7d-674c-44cc-b790-382b75d1xxx\",\n \"EntrypageId\": 0,\n \"ExternalProcessorInformation\": \"[MER_xxxxxxxxxxxxxx]/[NNNNNNNNN]\",\n \"FeeAmount\": 1,\n \"GatewayTransId\": \"TRN_xwCAjQorWAYX1nAhAoHZVfN8iYHbI0\",\n \"invoiceData\": {\n \"AdditionalData\": null,\n \"attachments\": [\n {}\n ],\n \"company\": \"ACME, INC\",\n \"discount\": 10,\n \"dutyAmount\": 0,\n \"firstName\": \"Chad\",\n \"freightAmount\": 10,\n \"frequency\": \"onetime\",\n \"invoiceAmount\": 105,\n \"invoiceDate\": \"2025-07-01\",\n \"invoiceDueDate\": \"2025-07-01\",\n \"invoiceEndDate\": \"2025-07-01\",\n \"invoiceNumber\": \"INV-2345\",\n \"invoiceStatus\": 1,\n \"invoiceType\": 0,\n \"items\": [\n {\n \"itemCost\": 5,\n \"itemProductName\": \"Materials deposit\",\n \"itemQty\": 1\n }\n ],\n \"lastName\": \"Mercia\",\n \"notes\": \"Example notes.\",\n \"paymentTerms\": \"PIA\",\n \"purchaseOrder\": \"PO-345\",\n \"shippingAddress1\": \"123 Walnut St\",\n \"shippingAddress2\": \"STE 900\",\n \"shippingCity\": \"Johnson City\",\n \"shippingCountry\": \"US\",\n \"shippingEmail\": \"example@email.com\",\n \"shippingFromZip\": \"30040\",\n \"shippingPhone\": \"5555555555\",\n \"shippingState\": \"TN\",\n \"shippingZip\": \"37619\",\n \"summaryCommodityCode\": \"501718\",\n \"tax\": 2.05,\n \"termsConditions\": \"Must be paid before work scheduled.\"\n },\n \"Method\": \"ach\",\n \"NetAmount\": 3762.87,\n \"Operation\": \"Sale\",\n \"OrderId\": \"O-5140\",\n \"OrgId\": 123,\n \"ParentOrgName\": \"PropertyManager Pro\",\n \"PaymentData\": {\n \"AccountExp\": \"11/29\",\n \"accountId\": \"accountId\",\n \"AccountType\": \"visa\",\n \"AccountZip\": \"90210\",\n \"binData\": {\n \"binMatchedLength\": \"6\",\n \"binCardBrand\": \"Visa\",\n \"binCardType\": \"Credit\",\n \"binCardCategory\": \"PLATINUM\",\n \"binCardIssuer\": \"Bank of Example\",\n \"binCardIssuerCountry\": \"United States\",\n \"binCardIssuerCountryCodeA2\": \"US\",\n \"binCardIssuerCountryNumber\": \"840\",\n \"binCardIsRegulated\": \"false\",\n \"binCardUseCategory\": \"Consumer\",\n \"binCardIssuerCountryCodeA3\": \"USA\"\n },\n \"HolderName\": \"Chad Mercia\",\n \"Initiator\": \"payor\",\n \"MaskedAccount\": \"4XXXXXXXX1111\",\n \"orderDescription\": \"Deposit for materials for 123 Walnut St\",\n \"paymentDetails\": {\n \"totalAmount\": 100\n },\n \"Sequence\": \"subsequent\",\n \"SignatureData\": \"SignatureData\",\n \"StoredId\": \"1ec55af9-7b5a-4ff0-81ed-c12d2f95e135-4440\",\n \"StoredMethodUsageType\": \"subscription\"\n },\n \"PaymentTransId\": \"226-fe55ec0348e34702bd91b4be198ce7ec\",\n \"PayorId\": 1551,\n \"PaypointDbaname\": \"Sunshine Gutters\",\n \"PaypointEntryname\": \"d193cf9a46\",\n \"PaypointId\": 226,\n \"PaypointLegalname\": \"Sunshine Services, LLC\",\n \"PendingFeeAmount\": 2,\n \"RefundId\": 0,\n \"ResponseData\": {\n \"authcode\": \"authcode\",\n \"avsresponse\": \"avsresponse\",\n \"avsresponse_text\": \"avsresponse_text\",\n \"cvvresponse\": \"cvvresponse\",\n \"cvvresponse_text\": \"cvvresponse_text\",\n \"emv_auth_response_data\": \"emv_auth_response_data\",\n \"orderid\": \"O-5140\",\n \"response\": \"response\",\n \"response_code\": \"XXX\",\n \"response_code_text\": \"Transaction was approved.\",\n \"responsetext\": \"CAPTURED\",\n \"transactionid\": \"TRN_XXXXXGOa87juzW\",\n \"type\": \"type\"\n },\n \"ReturnedId\": 0,\n \"ScheduleReference\": 0,\n \"SettlementStatus\": 2,\n \"Source\": \"api\",\n \"splitFundingInstructions\": [\n {}\n ],\n \"splitCount\": 0,\n \"TotalAmount\": 30.22,\n \"TransactionEvents\": [\n {}\n ],\n \"TransactionTime\": \"2025-10-19T00:00:00Z\",\n \"TransAdditionalData\": {\n \"key\": \"value\"\n },\n \"TransStatus\": 1\n },\n \"externalPaypointID\": null,\n \"pageidentifier\": null,\n \"messages\": [\n {\n \"Id\": 1,\n \"RoomId\": 100,\n \"UserId\": 555,\n \"UserName\": \"John Admin\",\n \"Content\": \"Chargeback initiated by customer\",\n \"CreatedAt\": \"2022-06-25T10:30:00Z\",\n \"MessageType\": 1,\n \"MessageProperties\": {\n \"status\": \"initial\"\n }\n }\n ],\n \"ServiceGroup\": \" \",\n \"DisputeType\": \"chargeback\",\n \"ProcessorName\": \"Global Payments\"\n}",
|
|
974
974
|
"headers": {
|
|
975
975
|
"Content-Type": "application/json"
|
|
976
976
|
}
|
|
@@ -1280,8 +1280,8 @@
|
|
|
1280
1280
|
}
|
|
1281
1281
|
},
|
|
1282
1282
|
{
|
|
1283
|
-
"id": "
|
|
1284
|
-
"name": "Get customer record
|
|
1283
|
+
"id": "1256ccb4-6a50-4ad1-96de-fbdd131841d0",
|
|
1284
|
+
"name": "Get customer record - GetCustomer",
|
|
1285
1285
|
"request": {
|
|
1286
1286
|
"urlPathTemplate": "/Customer/{customerId}",
|
|
1287
1287
|
"method": "GET",
|
|
@@ -1303,7 +1303,7 @@
|
|
|
1303
1303
|
"Content-Type": "application/json"
|
|
1304
1304
|
}
|
|
1305
1305
|
},
|
|
1306
|
-
"uuid": "
|
|
1306
|
+
"uuid": "1256ccb4-6a50-4ad1-96de-fbdd131841d0",
|
|
1307
1307
|
"persistent": true,
|
|
1308
1308
|
"priority": 3,
|
|
1309
1309
|
"metadata": {
|
|
@@ -2937,7 +2937,7 @@
|
|
|
2937
2937
|
},
|
|
2938
2938
|
"response": {
|
|
2939
2939
|
"status": 200,
|
|
2940
|
-
"body": "{\n \"isSuccess\": true,\n \"responseText\": \"Success\"
|
|
2940
|
+
"body": "{\n \"isSuccess\": true,\n \"responseText\": \"Success\"\n}",
|
|
2941
2941
|
"headers": {
|
|
2942
2942
|
"Content-Type": "application/json"
|
|
2943
2943
|
}
|
|
@@ -2955,8 +2955,8 @@
|
|
|
2955
2955
|
}
|
|
2956
2956
|
},
|
|
2957
2957
|
{
|
|
2958
|
-
"id": "
|
|
2959
|
-
"name": "Get all payment page details -
|
|
2958
|
+
"id": "9d0833f7-159b-4998-bc26-2b841ef6924c",
|
|
2959
|
+
"name": "Get all payment page details - LoadPage",
|
|
2960
2960
|
"request": {
|
|
2961
2961
|
"urlPathTemplate": "/Paypoint/load/{entry}/{subdomain}",
|
|
2962
2962
|
"method": "GET",
|
|
@@ -2981,7 +2981,7 @@
|
|
|
2981
2981
|
"Content-Type": "application/json"
|
|
2982
2982
|
}
|
|
2983
2983
|
},
|
|
2984
|
-
"uuid": "
|
|
2984
|
+
"uuid": "9d0833f7-159b-4998-bc26-2b841ef6924c",
|
|
2985
2985
|
"persistent": true,
|
|
2986
2986
|
"priority": 3,
|
|
2987
2987
|
"metadata": {
|
|
@@ -2994,8 +2994,8 @@
|
|
|
2994
2994
|
}
|
|
2995
2995
|
},
|
|
2996
2996
|
{
|
|
2997
|
-
"id": "
|
|
2998
|
-
"name": "Create payment page -
|
|
2997
|
+
"id": "13de0fb2-ffa5-4677-a3a1-7f5dbf1d8f95",
|
|
2998
|
+
"name": "Create payment page - NewPage",
|
|
2999
2999
|
"request": {
|
|
3000
3000
|
"urlPathTemplate": "/Paypoint/{entry}",
|
|
3001
3001
|
"method": "POST",
|
|
@@ -3017,7 +3017,7 @@
|
|
|
3017
3017
|
"Content-Type": "application/json"
|
|
3018
3018
|
}
|
|
3019
3019
|
},
|
|
3020
|
-
"uuid": "
|
|
3020
|
+
"uuid": "13de0fb2-ffa5-4677-a3a1-7f5dbf1d8f95",
|
|
3021
3021
|
"persistent": true,
|
|
3022
3022
|
"priority": 3,
|
|
3023
3023
|
"metadata": {
|
|
@@ -3464,7 +3464,7 @@
|
|
|
3464
3464
|
},
|
|
3465
3465
|
"response": {
|
|
3466
3466
|
"status": 200,
|
|
3467
|
-
"body": "{\n \"Records\": [\n {\n \"invoiceId\": 3674,\n \"customerId\": 1323,\n \"paypointId\": 10,\n \"invoiceNumber\": \"QA-1709680125\",\n \"invoiceDate\": \"2025-03-05\",\n \"invoiceDueDate\": \"2025-03-05\",\n \"invoiceSentDate\": \"2025-03-05\",\n \"invoiceEndDate\": \"2025-03-05\",\n \"lastPaymentDate\": null,\n \"createdAt\": \"2024-03-05T18:08:45Z\",\n \"invoiceStatus\": 1,\n \"invoiceType\": 0,\n \"frequency\": \"onetime\",\n \"paymentTerms\": \"
|
|
3467
|
+
"body": "{\n \"Records\": [\n {\n \"invoiceId\": 3674,\n \"customerId\": 1323,\n \"paypointId\": 10,\n \"invoiceNumber\": \"QA-1709680125\",\n \"invoiceDate\": \"2025-03-05\",\n \"invoiceDueDate\": \"2025-03-05\",\n \"invoiceSentDate\": \"2025-03-05\",\n \"invoiceEndDate\": \"2025-03-05\",\n \"lastPaymentDate\": null,\n \"createdAt\": \"2024-03-05T18:08:45Z\",\n \"invoiceStatus\": 1,\n \"invoiceType\": 0,\n \"frequency\": \"onetime\",\n \"paymentTerms\": \"NET30\",\n \"termsConditions\": null,\n \"notes\": null,\n \"tax\": 0,\n \"discount\": 0,\n \"invoiceAmount\": 50,\n \"invoicePaidAmount\": 0,\n \"freightAmount\": 0,\n \"dutyAmount\": 0,\n \"purchaseOrder\": null,\n \"firstName\": \"Amirah\",\n \"lastName\": \"Tan\",\n \"company\": null,\n \"shippingAddress1\": \"1234 Rainier Ave\",\n \"shippingAddress2\": \"Apt 567\",\n \"shippingCity\": \"Seattle\",\n \"shippingState\": \"WA\",\n \"shippingZip\": \"98101\",\n \"shippingFromZip\": \"\",\n \"shippingCountry\": \"US\",\n \"shippingEmail\": \"amirah.tan@example.com\",\n \"shippingPhone\": \"\",\n \"summaryCommodityCode\": null,\n \"items\": [\n {\n \"itemCost\": 50,\n \"itemDescription\": \"service\",\n \"itemProductName\": \"Internet\",\n \"itemQty\": 1\n }\n ],\n \"Customer\": {\n \"AdditionalData\": {\n \"key1\": \"value\",\n \"key2\": \"value\",\n \"key3\": \"value\"\n },\n \"BillingPhone\": \"1234567890\",\n \"customerId\": 1323\n },\n \"paylinkId\": \"3674-cf15b881-f276-4b69-bdc8-841b2d123XXXXXX\",\n \"billEvents\": [\n {\n \"description\": \"Invoice created\",\n \"eventTime\": \"2024-03-05T23:08:45Z\",\n \"refData\": \"00-802fa578504a7af6f3dd890a3802f7ef-61b4bedXXXX1234\"\n }\n ],\n \"scheduledOptions\": null,\n \"PaypointLegalname\": \"Emerald City LLC\",\n \"PaypointDbaname\": \"Emerald City Trading\",\n \"PaypointEntryname\": \"47a30009s\",\n \"ParentOrgId\": 123,\n \"ParentOrgName\": \"Emerald Enterprises\",\n \"AdditionalData\": null,\n \"DocumentsRef\": null,\n \"externalPaypointID\": \"seattletrade01-10\",\n \"pageIdentifier\": null\n }\n ],\n \"Summary\": {\n \"pageIdentifier\": \"null\",\n \"pageSize\": 20,\n \"totalAmount\": 77.22,\n \"totalNetAmount\": 77.22,\n \"totalPages\": 2,\n \"totalRecords\": 2\n }\n}",
|
|
3468
3468
|
"headers": {
|
|
3469
3469
|
"Content-Type": "application/json"
|
|
3470
3470
|
}
|
|
@@ -3511,7 +3511,7 @@
|
|
|
3511
3511
|
},
|
|
3512
3512
|
"response": {
|
|
3513
3513
|
"status": 200,
|
|
3514
|
-
"body": "{\n \"Records\": [\n {\n \"billEvents\": [\n {\n \"description\": \"Invoice created\",\n \"eventTime\": \"2024-03-05T23:08:45Z\",\n \"refData\": \"00-802fa578504a7af6f3dd890a3802f7ef-61b4bedXXXX1234\"\n }\n ],\n \"createdAt\": \"2024-03-05T18:08:45Z\",\n \"Customer\": {\n \"AdditionalData\": {\n \"key1\": \"value\",\n \"key2\": \"value\",\n \"key3\": \"value\"\n },\n \"BillingPhone\": \"1234567890\",\n \"customerId\": 1323\n },\n \"customerId\": 1323,\n \"discount\": 0,\n \"dutyAmount\": 0,\n \"externalPaypointID\": \"seattletrade01-10\",\n \"firstName\": \"Amirah\",\n \"freightAmount\": 0,\n \"frequency\": \"onetime\",\n \"termsConditions\": null,\n \"notes\": null,\n \"invoiceAmount\": 50,\n \"invoiceDate\": \"2025-03-05\",\n \"invoiceDueDate\": \"2025-03-05\",\n \"invoiceSentDate\": \"2025-03-05\",\n \"invoiceEndDate\": \"2025-03-05\",\n \"invoiceId\": 3674,\n \"invoiceNumber\": \"QA-1709680125\",\n \"invoicePaidAmount\": 0,\n \"invoiceStatus\": 1,\n \"invoiceType\": 0,\n \"items\": [\n {\n \"itemCost\": 50,\n \"itemDescription\": \"service\",\n \"itemProductName\": \"Internet\",\n \"itemQty\": 1\n }\n ],\n \"lastName\": \"Tan\",\n \"ParentOrgName\": \"Emerald Enterprises\",\n \"ParentOrgId\": 123,\n \"paylinkId\": \"3674-cf15b881-f276-4b69-bdc8-841b2d123XXXXXX\",\n \"paymentTerms\": \"
|
|
3514
|
+
"body": "{\n \"Records\": [\n {\n \"billEvents\": [\n {\n \"description\": \"Invoice created\",\n \"eventTime\": \"2024-03-05T23:08:45Z\",\n \"refData\": \"00-802fa578504a7af6f3dd890a3802f7ef-61b4bedXXXX1234\"\n }\n ],\n \"createdAt\": \"2024-03-05T18:08:45Z\",\n \"Customer\": {\n \"AdditionalData\": {\n \"key1\": \"value\",\n \"key2\": \"value\",\n \"key3\": \"value\"\n },\n \"BillingPhone\": \"1234567890\",\n \"customerId\": 1323\n },\n \"customerId\": 1323,\n \"discount\": 0,\n \"dutyAmount\": 0,\n \"externalPaypointID\": \"seattletrade01-10\",\n \"firstName\": \"Amirah\",\n \"freightAmount\": 0,\n \"frequency\": \"onetime\",\n \"termsConditions\": null,\n \"notes\": null,\n \"invoiceAmount\": 50,\n \"invoiceDate\": \"2025-03-05\",\n \"invoiceDueDate\": \"2025-03-05\",\n \"invoiceSentDate\": \"2025-03-05\",\n \"invoiceEndDate\": \"2025-03-05\",\n \"invoiceId\": 3674,\n \"invoiceNumber\": \"QA-1709680125\",\n \"invoicePaidAmount\": 0,\n \"invoiceStatus\": 1,\n \"invoiceType\": 0,\n \"items\": [\n {\n \"itemCost\": 50,\n \"itemDescription\": \"service\",\n \"itemProductName\": \"Internet\",\n \"itemQty\": 1\n }\n ],\n \"lastName\": \"Tan\",\n \"ParentOrgName\": \"Emerald Enterprises\",\n \"ParentOrgId\": 123,\n \"paylinkId\": \"3674-cf15b881-f276-4b69-bdc8-841b2d123XXXXXX\",\n \"paymentTerms\": \"NET30\",\n \"PaypointDbaname\": \"Emerald City Trading\",\n \"PaypointEntryname\": \"47a30009s\",\n \"paypointId\": 10,\n \"PaypointLegalname\": \"Emerald City LLC\",\n \"shippingAddress1\": \"1234 Rainier Ave\",\n \"shippingAddress2\": \"Apt 567\",\n \"shippingCity\": \"Seattle\",\n \"shippingCountry\": \"US\",\n \"shippingEmail\": \"amirah.tan@example.com\",\n \"shippingFromZip\": \"\",\n \"shippingPhone\": \"\",\n \"shippingState\": \"WA\",\n \"shippingZip\": \"98101\",\n \"tax\": 0\n }\n ],\n \"Summary\": {\n \"pageIdentifier\": \"null\",\n \"pageSize\": 20,\n \"totalAmount\": 77.22,\n \"totalNetAmount\": 77.22,\n \"totalPages\": 2,\n \"totalRecords\": 2\n }\n}",
|
|
3515
3515
|
"headers": {
|
|
3516
3516
|
"Content-Type": "application/json"
|
|
3517
3517
|
}
|
|
@@ -3699,7 +3699,7 @@
|
|
|
3699
3699
|
},
|
|
3700
3700
|
"response": {
|
|
3701
3701
|
"status": 200,
|
|
3702
|
-
"body": "{\n \"createdAt\": \"2022-07-01T15:00:01Z\",\n \"id\":
|
|
3702
|
+
"body": "{\n \"createdAt\": \"2022-07-01T15:00:01Z\",\n \"id\": 700,\n \"itemCategories\": [\n \"itemCategories\"\n ],\n \"itemCommodityCode\": \"010\",\n \"itemCost\": 5,\n \"itemDescription\": \"Deposit for materials.\",\n \"itemMode\": 0,\n \"itemProductCode\": \"M-DEPOSIT\",\n \"itemProductName\": \"Materials deposit\",\n \"itemQty\": 1,\n \"itemUnitOfMeasure\": \"SqFt\",\n \"lastUpdated\": \"2022-07-01T15:00:01Z\",\n \"pageidentifier\": \"null\",\n \"ParentOrgName\": \"PropertyManager Pro\",\n \"PaypointDbaname\": \"Sunshine Gutters\",\n \"PaypointEntryname\": \"d193cf9a46\",\n \"PaypointLegalname\": \"Sunshine Services, LLC\"\n}",
|
|
3703
3703
|
"headers": {
|
|
3704
3704
|
"Content-Type": "application/json"
|
|
3705
3705
|
}
|
|
@@ -4551,7 +4551,7 @@
|
|
|
4551
4551
|
},
|
|
4552
4552
|
"response": {
|
|
4553
4553
|
"status": 200,
|
|
4554
|
-
"body": "{\n \"isSuccess\": true,\n \"pageIdentifier\":
|
|
4554
|
+
"body": "{\n \"isSuccess\": true,\n \"pageIdentifier\": null,\n \"responseCode\": 1,\n \"responseData\": [\n {\n \"CustomerId\": 1000000,\n \"ReferenceId\": \"129-230\",\n \"ResultCode\": 1,\n \"ResultText\": \"Cancelled\"\n },\n {\n \"CustomerId\": 1000000,\n \"ReferenceId\": \"129-219\",\n \"ResultCode\": 1,\n \"ResultText\": \"Cancelled\"\n }\n ],\n \"responseText\": \"Success\"\n}",
|
|
4555
4555
|
"headers": {
|
|
4556
4556
|
"Content-Type": "application/json"
|
|
4557
4557
|
}
|
|
@@ -4654,7 +4654,7 @@
|
|
|
4654
4654
|
},
|
|
4655
4655
|
"response": {
|
|
4656
4656
|
"status": 200,
|
|
4657
|
-
"body": "{\n \"isSuccess\": true,\n \"pageIdentifier\":
|
|
4657
|
+
"body": "{\n \"isSuccess\": true,\n \"pageIdentifier\": null,\n \"responseCode\": 1,\n \"responseData\": [\n {\n \"CustomerId\": 1000000,\n \"ReferenceId\": \"129-230\",\n \"ResultCode\": 1,\n \"ResultText\": \"Captured\"\n },\n {\n \"CustomerId\": 1000000,\n \"ReferenceId\": \"129-219\",\n \"ResultCode\": 1,\n \"ResultText\": \"Captured\"\n }\n ],\n \"responseText\": \"Success\"\n}",
|
|
4658
4658
|
"headers": {
|
|
4659
4659
|
"Content-Type": "application/json"
|
|
4660
4660
|
}
|
|
@@ -4829,7 +4829,7 @@
|
|
|
4829
4829
|
},
|
|
4830
4830
|
"response": {
|
|
4831
4831
|
"status": 200,
|
|
4832
|
-
"body": "\"
|
|
4832
|
+
"body": "\"JVBERi0xLjcKJeLjz9MKMTIzIDAgb2JqCjwvTGluZWFyaXplZCAxL0wgMTIzNDU2L08gMTI1L0UgNzg5MDEvTiAxL1QgMTIzNDUwL0ggWyA4MDAgMjAwXT4+CmVuZG9iagouLi4=\"",
|
|
4833
4833
|
"headers": {
|
|
4834
4834
|
"Content-Type": "application/json"
|
|
4835
4835
|
}
|
|
@@ -5061,8 +5061,8 @@
|
|
|
5061
5061
|
}
|
|
5062
5062
|
},
|
|
5063
5063
|
{
|
|
5064
|
-
"id": "
|
|
5065
|
-
"name": "Export
|
|
5064
|
+
"id": "774d9ccd-9966-4d6f-a2bc-c2ab4f3e4fc9",
|
|
5065
|
+
"name": "Export generated report by ID - default",
|
|
5066
5066
|
"request": {
|
|
5067
5067
|
"urlPathTemplate": "/Export/notificationReport/{Id}",
|
|
5068
5068
|
"method": "GET",
|
|
@@ -5084,7 +5084,7 @@
|
|
|
5084
5084
|
"Content-Type": "application/json"
|
|
5085
5085
|
}
|
|
5086
5086
|
},
|
|
5087
|
-
"uuid": "
|
|
5087
|
+
"uuid": "774d9ccd-9966-4d6f-a2bc-c2ab4f3e4fc9",
|
|
5088
5088
|
"persistent": true,
|
|
5089
5089
|
"priority": 3,
|
|
5090
5090
|
"metadata": {
|
|
@@ -5097,8 +5097,8 @@
|
|
|
5097
5097
|
}
|
|
5098
5098
|
},
|
|
5099
5099
|
{
|
|
5100
|
-
"id": "
|
|
5101
|
-
"name": "searchNotificationLogs -
|
|
5100
|
+
"id": "9b039aa6-2f47-47a6-be42-540e814507db",
|
|
5101
|
+
"name": "searchNotificationLogs - SearchNotificationLogsExample",
|
|
5102
5102
|
"request": {
|
|
5103
5103
|
"urlPathTemplate": "/v2/notificationlogs",
|
|
5104
5104
|
"method": "POST",
|
|
@@ -5120,7 +5120,7 @@
|
|
|
5120
5120
|
"Content-Type": "application/json"
|
|
5121
5121
|
}
|
|
5122
5122
|
},
|
|
5123
|
-
"uuid": "
|
|
5123
|
+
"uuid": "9b039aa6-2f47-47a6-be42-540e814507db",
|
|
5124
5124
|
"persistent": true,
|
|
5125
5125
|
"priority": 3,
|
|
5126
5126
|
"metadata": {
|
|
@@ -5133,8 +5133,8 @@
|
|
|
5133
5133
|
}
|
|
5134
5134
|
},
|
|
5135
5135
|
{
|
|
5136
|
-
"id": "
|
|
5137
|
-
"name": "getNotificationLog -
|
|
5136
|
+
"id": "9b80bd44-31fb-42c7-9a92-05b42c10eafc",
|
|
5137
|
+
"name": "getNotificationLog - GetNotificationLogExample",
|
|
5138
5138
|
"request": {
|
|
5139
5139
|
"urlPathTemplate": "/v2/notificationlogs/{uuid}",
|
|
5140
5140
|
"method": "GET",
|
|
@@ -5156,7 +5156,7 @@
|
|
|
5156
5156
|
"Content-Type": "application/json"
|
|
5157
5157
|
}
|
|
5158
5158
|
},
|
|
5159
|
-
"uuid": "
|
|
5159
|
+
"uuid": "9b80bd44-31fb-42c7-9a92-05b42c10eafc",
|
|
5160
5160
|
"persistent": true,
|
|
5161
5161
|
"priority": 3,
|
|
5162
5162
|
"metadata": {
|
|
@@ -5169,8 +5169,8 @@
|
|
|
5169
5169
|
}
|
|
5170
5170
|
},
|
|
5171
5171
|
{
|
|
5172
|
-
"id": "
|
|
5173
|
-
"name": "retryNotificationLog -
|
|
5172
|
+
"id": "b4d107ea-2b78-464f-acc4-d25809fa451c",
|
|
5173
|
+
"name": "retryNotificationLog - RetryNotificationLogExample",
|
|
5174
5174
|
"request": {
|
|
5175
5175
|
"urlPathTemplate": "/v2/notificationlogs/{uuid}/retry",
|
|
5176
5176
|
"method": "GET",
|
|
@@ -5192,7 +5192,7 @@
|
|
|
5192
5192
|
"Content-Type": "application/json"
|
|
5193
5193
|
}
|
|
5194
5194
|
},
|
|
5195
|
-
"uuid": "
|
|
5195
|
+
"uuid": "b4d107ea-2b78-464f-acc4-d25809fa451c",
|
|
5196
5196
|
"persistent": true,
|
|
5197
5197
|
"priority": 3,
|
|
5198
5198
|
"metadata": {
|
|
@@ -5205,8 +5205,8 @@
|
|
|
5205
5205
|
}
|
|
5206
5206
|
},
|
|
5207
5207
|
{
|
|
5208
|
-
"id": "
|
|
5209
|
-
"name": "bulkRetryNotificationLogs -
|
|
5208
|
+
"id": "58f12b85-65d2-45a2-af58-c0bd4669f45a",
|
|
5209
|
+
"name": "bulkRetryNotificationLogs - BulkRetryNotificationLogsExample",
|
|
5210
5210
|
"request": {
|
|
5211
5211
|
"urlPathTemplate": "/v2/notificationlogs/retry",
|
|
5212
5212
|
"method": "POST",
|
|
@@ -5223,7 +5223,7 @@
|
|
|
5223
5223
|
"Content-Type": "application/json"
|
|
5224
5224
|
}
|
|
5225
5225
|
},
|
|
5226
|
-
"uuid": "
|
|
5226
|
+
"uuid": "58f12b85-65d2-45a2-af58-c0bd4669f45a",
|
|
5227
5227
|
"persistent": true,
|
|
5228
5228
|
"priority": 3,
|
|
5229
5229
|
"metadata": {
|
|
@@ -6478,8 +6478,8 @@
|
|
|
6478
6478
|
}
|
|
6479
6479
|
},
|
|
6480
6480
|
{
|
|
6481
|
-
"id": "
|
|
6482
|
-
"name": "Get payment page details -
|
|
6481
|
+
"id": "ca0603f3-ee96-499d-a303-c80d195b491c",
|
|
6482
|
+
"name": "Get payment page details - GetPage",
|
|
6483
6483
|
"request": {
|
|
6484
6484
|
"urlPathTemplate": "/Paypoint/{entry}/{subdomain}",
|
|
6485
6485
|
"method": "GET",
|
|
@@ -6504,7 +6504,7 @@
|
|
|
6504
6504
|
"Content-Type": "application/json"
|
|
6505
6505
|
}
|
|
6506
6506
|
},
|
|
6507
|
-
"uuid": "
|
|
6507
|
+
"uuid": "ca0603f3-ee96-499d-a303-c80d195b491c",
|
|
6508
6508
|
"persistent": true,
|
|
6509
6509
|
"priority": 3,
|
|
6510
6510
|
"metadata": {
|
|
@@ -6517,8 +6517,8 @@
|
|
|
6517
6517
|
}
|
|
6518
6518
|
},
|
|
6519
6519
|
{
|
|
6520
|
-
"id": "
|
|
6521
|
-
"name": "Delete a payment page -
|
|
6520
|
+
"id": "5c039598-e782-4de0-8f37-8ee4827f299e",
|
|
6521
|
+
"name": "Delete a payment page - RemovePage",
|
|
6522
6522
|
"request": {
|
|
6523
6523
|
"urlPathTemplate": "/Paypoint/{entry}/{subdomain}",
|
|
6524
6524
|
"method": "DELETE",
|
|
@@ -6543,7 +6543,7 @@
|
|
|
6543
6543
|
"Content-Type": "application/json"
|
|
6544
6544
|
}
|
|
6545
6545
|
},
|
|
6546
|
-
"uuid": "
|
|
6546
|
+
"uuid": "5c039598-e782-4de0-8f37-8ee4827f299e",
|
|
6547
6547
|
"persistent": true,
|
|
6548
6548
|
"priority": 3,
|
|
6549
6549
|
"metadata": {
|
|
@@ -6556,8 +6556,8 @@
|
|
|
6556
6556
|
}
|
|
6557
6557
|
},
|
|
6558
6558
|
{
|
|
6559
|
-
"id": "
|
|
6560
|
-
"name": "Update paypoint logo -
|
|
6559
|
+
"id": "9932ce4e-0be4-40d9-826d-0b66afb41c87",
|
|
6560
|
+
"name": "Update paypoint logo - SaveLogo",
|
|
6561
6561
|
"request": {
|
|
6562
6562
|
"urlPathTemplate": "/Paypoint/logo/{entry}",
|
|
6563
6563
|
"method": "PUT",
|
|
@@ -6579,7 +6579,7 @@
|
|
|
6579
6579
|
"Content-Type": "application/json"
|
|
6580
6580
|
}
|
|
6581
6581
|
},
|
|
6582
|
-
"uuid": "
|
|
6582
|
+
"uuid": "9932ce4e-0be4-40d9-826d-0b66afb41c87",
|
|
6583
6583
|
"persistent": true,
|
|
6584
6584
|
"priority": 3,
|
|
6585
6585
|
"metadata": {
|
|
@@ -6847,8 +6847,8 @@
|
|
|
6847
6847
|
}
|
|
6848
6848
|
},
|
|
6849
6849
|
{
|
|
6850
|
-
"id": "
|
|
6851
|
-
"name": "Get list of MoneyOut batches for a paypoint -
|
|
6850
|
+
"id": "70e86fd0-0664-4735-88c8-7ac1d97f5dfd",
|
|
6851
|
+
"name": "Get list of MoneyOut batches for a paypoint - ListBatchesOutExample",
|
|
6852
6852
|
"request": {
|
|
6853
6853
|
"urlPathTemplate": "/Query/batchesOut/{entry}",
|
|
6854
6854
|
"method": "GET",
|
|
@@ -6881,7 +6881,7 @@
|
|
|
6881
6881
|
"Content-Type": "application/json"
|
|
6882
6882
|
}
|
|
6883
6883
|
},
|
|
6884
|
-
"uuid": "
|
|
6884
|
+
"uuid": "70e86fd0-0664-4735-88c8-7ac1d97f5dfd",
|
|
6885
6885
|
"persistent": true,
|
|
6886
6886
|
"priority": 3,
|
|
6887
6887
|
"metadata": {
|
|
@@ -6894,8 +6894,8 @@
|
|
|
6894
6894
|
}
|
|
6895
6895
|
},
|
|
6896
6896
|
{
|
|
6897
|
-
"id": "
|
|
6898
|
-
"name": "Get list of MoneyOut batches for an org -
|
|
6897
|
+
"id": "1425b962-825b-42ac-ba6d-a60da01069fd",
|
|
6898
|
+
"name": "Get list of MoneyOut batches for an org - ListBatchesOutOrgExample",
|
|
6899
6899
|
"request": {
|
|
6900
6900
|
"urlPathTemplate": "/Query/batchesOut/org/{orgId}",
|
|
6901
6901
|
"method": "GET",
|
|
@@ -6928,7 +6928,7 @@
|
|
|
6928
6928
|
"Content-Type": "application/json"
|
|
6929
6929
|
}
|
|
6930
6930
|
},
|
|
6931
|
-
"uuid": "
|
|
6931
|
+
"uuid": "1425b962-825b-42ac-ba6d-a60da01069fd",
|
|
6932
6932
|
"persistent": true,
|
|
6933
6933
|
"priority": 3,
|
|
6934
6934
|
"metadata": {
|
|
@@ -6988,8 +6988,8 @@
|
|
|
6988
6988
|
}
|
|
6989
6989
|
},
|
|
6990
6990
|
{
|
|
6991
|
-
"id": "
|
|
6992
|
-
"name": "Get list of chargebacks and returned transactions for an org -
|
|
6991
|
+
"id": "bebac268-c543-4b5b-8a9b-6d2e9267164c",
|
|
6992
|
+
"name": "Get list of chargebacks and returned transactions for an org - ListChargebacksOrgExample",
|
|
6993
6993
|
"request": {
|
|
6994
6994
|
"urlPathTemplate": "/Query/chargebacks/org/{orgId}",
|
|
6995
6995
|
"method": "GET",
|
|
@@ -7022,7 +7022,7 @@
|
|
|
7022
7022
|
"Content-Type": "application/json"
|
|
7023
7023
|
}
|
|
7024
7024
|
},
|
|
7025
|
-
"uuid": "
|
|
7025
|
+
"uuid": "bebac268-c543-4b5b-8a9b-6d2e9267164c",
|
|
7026
7026
|
"persistent": true,
|
|
7027
7027
|
"priority": 3,
|
|
7028
7028
|
"metadata": {
|
|
@@ -7411,8 +7411,8 @@
|
|
|
7411
7411
|
}
|
|
7412
7412
|
},
|
|
7413
7413
|
{
|
|
7414
|
-
"id": "
|
|
7415
|
-
"name": "Get list of organizations for a parent -
|
|
7414
|
+
"id": "21895e17-46d6-4e99-a615-bc89ec8e3d37",
|
|
7415
|
+
"name": "Get list of organizations for a parent - ListOrganizationsExample",
|
|
7416
7416
|
"request": {
|
|
7417
7417
|
"urlPathTemplate": "/Query/organizations/{orgId}",
|
|
7418
7418
|
"method": "GET",
|
|
@@ -7445,7 +7445,7 @@
|
|
|
7445
7445
|
"Content-Type": "application/json"
|
|
7446
7446
|
}
|
|
7447
7447
|
},
|
|
7448
|
-
"uuid": "
|
|
7448
|
+
"uuid": "21895e17-46d6-4e99-a615-bc89ec8e3d37",
|
|
7449
7449
|
"persistent": true,
|
|
7450
7450
|
"priority": 3,
|
|
7451
7451
|
"metadata": {
|
|
@@ -7458,8 +7458,8 @@
|
|
|
7458
7458
|
}
|
|
7459
7459
|
},
|
|
7460
7460
|
{
|
|
7461
|
-
"id": "
|
|
7462
|
-
"name": "Get list of money out transactions for paypoint -
|
|
7461
|
+
"id": "e1f2e2ad-ea4a-4210-bdb7-08a857643567",
|
|
7462
|
+
"name": "Get list of money out transactions for paypoint - ListPayoutExample",
|
|
7463
7463
|
"request": {
|
|
7464
7464
|
"urlPathTemplate": "/Query/payouts/{entry}",
|
|
7465
7465
|
"method": "GET",
|
|
@@ -7492,7 +7492,7 @@
|
|
|
7492
7492
|
"Content-Type": "application/json"
|
|
7493
7493
|
}
|
|
7494
7494
|
},
|
|
7495
|
-
"uuid": "
|
|
7495
|
+
"uuid": "e1f2e2ad-ea4a-4210-bdb7-08a857643567",
|
|
7496
7496
|
"persistent": true,
|
|
7497
7497
|
"priority": 3,
|
|
7498
7498
|
"metadata": {
|
|
@@ -7552,8 +7552,8 @@
|
|
|
7552
7552
|
}
|
|
7553
7553
|
},
|
|
7554
7554
|
{
|
|
7555
|
-
"id": "
|
|
7556
|
-
"name": "Get list of paypoints for an organization -
|
|
7555
|
+
"id": "798d0ef8-c03f-499a-8513-78ccf1c9b0fa",
|
|
7556
|
+
"name": "Get list of paypoints for an organization - ListPaypointsExample",
|
|
7557
7557
|
"request": {
|
|
7558
7558
|
"urlPathTemplate": "/Query/paypoints/{orgId}",
|
|
7559
7559
|
"method": "GET",
|
|
@@ -7586,7 +7586,7 @@
|
|
|
7586
7586
|
"Content-Type": "application/json"
|
|
7587
7587
|
}
|
|
7588
7588
|
},
|
|
7589
|
-
"uuid": "
|
|
7589
|
+
"uuid": "798d0ef8-c03f-499a-8513-78ccf1c9b0fa",
|
|
7590
7590
|
"persistent": true,
|
|
7591
7591
|
"priority": 3,
|
|
7592
7592
|
"metadata": {
|
|
@@ -8212,8 +8212,8 @@
|
|
|
8212
8212
|
}
|
|
8213
8213
|
},
|
|
8214
8214
|
{
|
|
8215
|
-
"id": "
|
|
8216
|
-
"name": "Get list of users for an org -
|
|
8215
|
+
"id": "b1d7e137-b968-4e1a-97d7-bc0829026d9b",
|
|
8216
|
+
"name": "Get list of users for an org - ListUsersOrgExample",
|
|
8217
8217
|
"request": {
|
|
8218
8218
|
"urlPathTemplate": "/Query/users/org/{orgId}",
|
|
8219
8219
|
"method": "GET",
|
|
@@ -8246,7 +8246,7 @@
|
|
|
8246
8246
|
"Content-Type": "application/json"
|
|
8247
8247
|
}
|
|
8248
8248
|
},
|
|
8249
|
-
"uuid": "
|
|
8249
|
+
"uuid": "b1d7e137-b968-4e1a-97d7-bc0829026d9b",
|
|
8250
8250
|
"persistent": true,
|
|
8251
8251
|
"priority": 3,
|
|
8252
8252
|
"metadata": {
|
|
@@ -8259,8 +8259,8 @@
|
|
|
8259
8259
|
}
|
|
8260
8260
|
},
|
|
8261
8261
|
{
|
|
8262
|
-
"id": "
|
|
8263
|
-
"name": "Get list of users for paypoint -
|
|
8262
|
+
"id": "e6081602-6127-420a-bbc5-c58cbb5ba869",
|
|
8263
|
+
"name": "Get list of users for paypoint - ListUsersPaypointExample",
|
|
8264
8264
|
"request": {
|
|
8265
8265
|
"urlPathTemplate": "/Query/users/point/{entry}",
|
|
8266
8266
|
"method": "GET",
|
|
@@ -8293,7 +8293,7 @@
|
|
|
8293
8293
|
"Content-Type": "application/json"
|
|
8294
8294
|
}
|
|
8295
8295
|
},
|
|
8296
|
-
"uuid": "
|
|
8296
|
+
"uuid": "e6081602-6127-420a-bbc5-c58cbb5ba869",
|
|
8297
8297
|
"persistent": true,
|
|
8298
8298
|
"priority": 3,
|
|
8299
8299
|
"metadata": {
|
|
@@ -8606,17 +8606,17 @@
|
|
|
8606
8606
|
"equalTo": "m"
|
|
8607
8607
|
},
|
|
8608
8608
|
"level": {
|
|
8609
|
-
"equalTo": "
|
|
8609
|
+
"equalTo": "2"
|
|
8610
8610
|
},
|
|
8611
8611
|
"mode": {
|
|
8612
|
-
"equalTo": "
|
|
8612
|
+
"equalTo": "custom"
|
|
8613
8613
|
}
|
|
8614
8614
|
},
|
|
8615
8615
|
"queryParameters": {
|
|
8616
|
-
"
|
|
8616
|
+
"startDate": {
|
|
8617
8617
|
"equalTo": "2025-11-01"
|
|
8618
8618
|
},
|
|
8619
|
-
"
|
|
8619
|
+
"endDate": {
|
|
8620
8620
|
"equalTo": "2025-11-30"
|
|
8621
8621
|
}
|
|
8622
8622
|
}
|
|
@@ -8701,7 +8701,7 @@
|
|
|
8701
8701
|
"equalTo": "30"
|
|
8702
8702
|
},
|
|
8703
8703
|
"level": {
|
|
8704
|
-
"equalTo": "
|
|
8704
|
+
"equalTo": "2"
|
|
8705
8705
|
}
|
|
8706
8706
|
}
|
|
8707
8707
|
},
|
|
@@ -9095,8 +9095,8 @@
|
|
|
9095
9095
|
}
|
|
9096
9096
|
},
|
|
9097
9097
|
{
|
|
9098
|
-
"id": "
|
|
9099
|
-
"name": "Get payment method -
|
|
9098
|
+
"id": "d843218e-1847-43e8-9b06-5d6ce1666dc7",
|
|
9099
|
+
"name": "Get payment method - GetCardMethod",
|
|
9100
9100
|
"request": {
|
|
9101
9101
|
"urlPathTemplate": "/TokenStorage/{methodId}",
|
|
9102
9102
|
"method": "GET",
|
|
@@ -9126,7 +9126,7 @@
|
|
|
9126
9126
|
"Content-Type": "application/json"
|
|
9127
9127
|
}
|
|
9128
9128
|
},
|
|
9129
|
-
"uuid": "
|
|
9129
|
+
"uuid": "d843218e-1847-43e8-9b06-5d6ce1666dc7",
|
|
9130
9130
|
"persistent": true,
|
|
9131
9131
|
"priority": 3,
|
|
9132
9132
|
"metadata": {
|
|
@@ -9407,8 +9407,8 @@
|
|
|
9407
9407
|
}
|
|
9408
9408
|
},
|
|
9409
9409
|
{
|
|
9410
|
-
"id": "
|
|
9411
|
-
"name": "Enable/
|
|
9410
|
+
"id": "47be99fa-1c61-4ff7-a4cd-e43225bccde2",
|
|
9411
|
+
"name": "Enable/disable MFA for user in an organization - default",
|
|
9412
9412
|
"request": {
|
|
9413
9413
|
"urlPathTemplate": "/User/mfa/{userId}",
|
|
9414
9414
|
"method": "PUT",
|
|
@@ -9430,7 +9430,7 @@
|
|
|
9430
9430
|
"Content-Type": "application/json"
|
|
9431
9431
|
}
|
|
9432
9432
|
},
|
|
9433
|
-
"uuid": "
|
|
9433
|
+
"uuid": "47be99fa-1c61-4ff7-a4cd-e43225bccde2",
|
|
9434
9434
|
"persistent": true,
|
|
9435
9435
|
"priority": 3,
|
|
9436
9436
|
"metadata": {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: payabli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.32
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Payabli
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: The Payabli Ruby library provides convenient access to the Payabli API
|
|
14
14
|
from Ruby.
|