payabli 2.2.24 → 2.2.26
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 -3
- data/README.md +5 -5
- data/lib/payabli/client.rb +6 -1
- data/lib/payabli/cloud/client.rb +3 -0
- data/lib/payabli/management/client.rb +61 -0
- data/lib/payabli/management/types/bank_account_verification_details_response.rb +24 -0
- data/lib/payabli/management/types/verify_account_details_request.rb +17 -0
- data/lib/payabli/management/types/verify_account_details_response.rb +14 -0
- data/lib/payabli/money_in/client.rb +3 -1
- data/lib/payabli/money_in/types/transaction_detail_customer.rb +16 -16
- data/lib/payabli/money_in/types/transaction_detail_payment_data.rb +1 -1
- data/lib/payabli/query/client.rb +100 -0
- data/lib/payabli/query/types/list_devices_org_request.rb +16 -0
- data/lib/payabli/query/types/list_devices_request.rb +16 -0
- data/lib/payabli/query_types/types/device_query_record.rb +34 -0
- data/lib/payabli/query_types/types/query_device_response.rb +13 -0
- data/lib/payabli/types/processing_section.rb +5 -0
- data/lib/payabli/types/template_element.rb +1 -0
- data/lib/payabli/types/v_card_card_type.rb +23 -0
- data/lib/payabli/types/v_card_record.rb +1 -0
- data/lib/payabli/v_2_money_in_types/types/v_2_transaction_details.rb +1 -1
- data/lib/payabli/version.rb +1 -1
- data/lib/payabli.rb +9 -0
- data/reference.md +530 -1
- data/wiremock/wiremock-mappings.json +118 -3
- metadata +11 -2
data/reference.md
CHANGED
|
@@ -2565,6 +2565,8 @@ client.cloud.history_device(
|
|
|
2565
2565
|
<dl>
|
|
2566
2566
|
<dd>
|
|
2567
2567
|
|
|
2568
|
+
Use [List devices by paypoint](/developers/api-reference/cloud/get-list-of-devices-for-a-paypoint) instead, which supports filters, sorting, and pagination.
|
|
2569
|
+
|
|
2568
2570
|
Get a list of cloud devices registered to an entrypoint.
|
|
2569
2571
|
</dd>
|
|
2570
2572
|
</dl>
|
|
@@ -10256,6 +10258,129 @@ client.line_item.update_item(
|
|
|
10256
10258
|
</dl>
|
|
10257
10259
|
|
|
10258
10260
|
|
|
10261
|
+
</dd>
|
|
10262
|
+
</dl>
|
|
10263
|
+
</details>
|
|
10264
|
+
|
|
10265
|
+
## Management
|
|
10266
|
+
<details><summary><code>client.management.<a href="/lib/payabli/management/client.rb">verify_account_details</a>(entry, request) -> Payabli::Management::Types::VerifyAccountDetailsResponse</code></summary>
|
|
10267
|
+
<dl>
|
|
10268
|
+
<dd>
|
|
10269
|
+
|
|
10270
|
+
#### 📝 Description
|
|
10271
|
+
|
|
10272
|
+
<dl>
|
|
10273
|
+
<dd>
|
|
10274
|
+
|
|
10275
|
+
<dl>
|
|
10276
|
+
<dd>
|
|
10277
|
+
|
|
10278
|
+
Verifies a bank account and returns detailed verification results from the verification network, including bank name, account status, and response codes. Unlike a pass/fail verification, this endpoint returns granular data to support decision-making and troubleshooting.
|
|
10279
|
+
|
|
10280
|
+
When bank authentication is enabled for the paypoint's organization, the endpoint performs an identity verification check on the account holder. Otherwise, it performs an account existence check. When bank authentication is enabled, the `accountHolderType` and `holderName` fields are required.
|
|
10281
|
+
|
|
10282
|
+
Requires `inboundpayments_create` or `outboundpayments_create` permission.
|
|
10283
|
+
</dd>
|
|
10284
|
+
</dl>
|
|
10285
|
+
</dd>
|
|
10286
|
+
</dl>
|
|
10287
|
+
|
|
10288
|
+
#### 🔌 Usage
|
|
10289
|
+
|
|
10290
|
+
<dl>
|
|
10291
|
+
<dd>
|
|
10292
|
+
|
|
10293
|
+
<dl>
|
|
10294
|
+
<dd>
|
|
10295
|
+
|
|
10296
|
+
```ruby
|
|
10297
|
+
client.management.verify_account_details(
|
|
10298
|
+
entry: "entry752",
|
|
10299
|
+
routing_number: "122105278",
|
|
10300
|
+
account_number: "0000000016",
|
|
10301
|
+
account_type: "Checking",
|
|
10302
|
+
country: "US",
|
|
10303
|
+
account_holder_type: "personal",
|
|
10304
|
+
holder_name: "Jane Doe"
|
|
10305
|
+
)
|
|
10306
|
+
```
|
|
10307
|
+
</dd>
|
|
10308
|
+
</dl>
|
|
10309
|
+
</dd>
|
|
10310
|
+
</dl>
|
|
10311
|
+
|
|
10312
|
+
#### ⚙️ Parameters
|
|
10313
|
+
|
|
10314
|
+
<dl>
|
|
10315
|
+
<dd>
|
|
10316
|
+
|
|
10317
|
+
<dl>
|
|
10318
|
+
<dd>
|
|
10319
|
+
|
|
10320
|
+
**entry:** `String` — The paypoint's entry name identifier.
|
|
10321
|
+
|
|
10322
|
+
</dd>
|
|
10323
|
+
</dl>
|
|
10324
|
+
|
|
10325
|
+
<dl>
|
|
10326
|
+
<dd>
|
|
10327
|
+
|
|
10328
|
+
**routing_number:** `String` — The bank routing number to verify.
|
|
10329
|
+
|
|
10330
|
+
</dd>
|
|
10331
|
+
</dl>
|
|
10332
|
+
|
|
10333
|
+
<dl>
|
|
10334
|
+
<dd>
|
|
10335
|
+
|
|
10336
|
+
**account_number:** `String` — The bank account number to verify.
|
|
10337
|
+
|
|
10338
|
+
</dd>
|
|
10339
|
+
</dl>
|
|
10340
|
+
|
|
10341
|
+
<dl>
|
|
10342
|
+
<dd>
|
|
10343
|
+
|
|
10344
|
+
**account_type:** `String` — The type of bank account, such as `Checking` or `Savings`.
|
|
10345
|
+
|
|
10346
|
+
</dd>
|
|
10347
|
+
</dl>
|
|
10348
|
+
|
|
10349
|
+
<dl>
|
|
10350
|
+
<dd>
|
|
10351
|
+
|
|
10352
|
+
**country:** `String` — The ISO country code for the bank account, such as `US`.
|
|
10353
|
+
|
|
10354
|
+
</dd>
|
|
10355
|
+
</dl>
|
|
10356
|
+
|
|
10357
|
+
<dl>
|
|
10358
|
+
<dd>
|
|
10359
|
+
|
|
10360
|
+
**account_holder_type:** `String` — The type of account holder. Accepted values are `personal` or `business`. Required when bank authentication is enabled for the paypoint's organization.
|
|
10361
|
+
|
|
10362
|
+
</dd>
|
|
10363
|
+
</dl>
|
|
10364
|
+
|
|
10365
|
+
<dl>
|
|
10366
|
+
<dd>
|
|
10367
|
+
|
|
10368
|
+
**holder_name:** `String` — The name of the bank account holder. For personal accounts, provide the holder's full name (for example, `Jane Doe`); the value is split on the first space into first and last name. For business accounts, provide the legal business name. Required when bank authentication is enabled for the paypoint's organization.
|
|
10369
|
+
|
|
10370
|
+
</dd>
|
|
10371
|
+
</dl>
|
|
10372
|
+
|
|
10373
|
+
<dl>
|
|
10374
|
+
<dd>
|
|
10375
|
+
|
|
10376
|
+
**request_options:** `Payabli::Management::RequestOptions`
|
|
10377
|
+
|
|
10378
|
+
</dd>
|
|
10379
|
+
</dl>
|
|
10380
|
+
</dd>
|
|
10381
|
+
</dl>
|
|
10382
|
+
|
|
10383
|
+
|
|
10259
10384
|
</dd>
|
|
10260
10385
|
</dl>
|
|
10261
10386
|
</details>
|
|
@@ -10883,7 +11008,7 @@ client.money_in.getpaid(
|
|
|
10883
11008
|
<dl>
|
|
10884
11009
|
<dd>
|
|
10885
11010
|
|
|
10886
|
-
A reversal either refunds or voids a transaction independent of the transaction's settlement status. Send a reversal request for a transaction, and Payabli automatically determines whether it's a refund or void. You don't need to know whether the transaction is settled or not.
|
|
11011
|
+
A reversal either refunds or voids a transaction independent of the transaction's settlement status. Send a reversal request for a transaction, and Payabli automatically determines whether it's a refund or void. You don't need to know whether the transaction is settled or not. This endpoint only works on transactions made with the v1 API. For v2 transactions, check the transaction's settlement status and call v2 void or v2 refund based on the result.
|
|
10887
11012
|
</dd>
|
|
10888
11013
|
</dl>
|
|
10889
11014
|
</dd>
|
|
@@ -18675,6 +18800,408 @@ See [Filters and Conditions Reference](/developers/developer-guides/pay-ops-repo
|
|
|
18675
18800
|
</dl>
|
|
18676
18801
|
|
|
18677
18802
|
|
|
18803
|
+
</dd>
|
|
18804
|
+
</dl>
|
|
18805
|
+
</details>
|
|
18806
|
+
|
|
18807
|
+
<details><summary><code>client.query.<a href="/lib/payabli/query/client.rb">list_devices</a>(entry) -> Payabli::QueryTypes::Types::QueryDeviceResponse</code></summary>
|
|
18808
|
+
<dl>
|
|
18809
|
+
<dd>
|
|
18810
|
+
|
|
18811
|
+
#### 📝 Description
|
|
18812
|
+
|
|
18813
|
+
<dl>
|
|
18814
|
+
<dd>
|
|
18815
|
+
|
|
18816
|
+
<dl>
|
|
18817
|
+
<dd>
|
|
18818
|
+
|
|
18819
|
+
Returns a list of cloud devices for a single paypoint. Use filters to limit results. Include the `exportFormat` query parameter to return the results as a file instead of a JSON response.
|
|
18820
|
+
</dd>
|
|
18821
|
+
</dl>
|
|
18822
|
+
</dd>
|
|
18823
|
+
</dl>
|
|
18824
|
+
|
|
18825
|
+
#### 🔌 Usage
|
|
18826
|
+
|
|
18827
|
+
<dl>
|
|
18828
|
+
<dd>
|
|
18829
|
+
|
|
18830
|
+
<dl>
|
|
18831
|
+
<dd>
|
|
18832
|
+
|
|
18833
|
+
```ruby
|
|
18834
|
+
client.query.list_devices(
|
|
18835
|
+
entry: "8cfec329267",
|
|
18836
|
+
from_record: 0,
|
|
18837
|
+
limit_record: 20,
|
|
18838
|
+
sort_by: "desc(createdAt)"
|
|
18839
|
+
)
|
|
18840
|
+
```
|
|
18841
|
+
</dd>
|
|
18842
|
+
</dl>
|
|
18843
|
+
</dd>
|
|
18844
|
+
</dl>
|
|
18845
|
+
|
|
18846
|
+
#### ⚙️ Parameters
|
|
18847
|
+
|
|
18848
|
+
<dl>
|
|
18849
|
+
<dd>
|
|
18850
|
+
|
|
18851
|
+
<dl>
|
|
18852
|
+
<dd>
|
|
18853
|
+
|
|
18854
|
+
**entry:** `String`
|
|
18855
|
+
|
|
18856
|
+
</dd>
|
|
18857
|
+
</dl>
|
|
18858
|
+
|
|
18859
|
+
<dl>
|
|
18860
|
+
<dd>
|
|
18861
|
+
|
|
18862
|
+
**export_format:** `Payabli::Types::ExportFormat`
|
|
18863
|
+
|
|
18864
|
+
</dd>
|
|
18865
|
+
</dl>
|
|
18866
|
+
|
|
18867
|
+
<dl>
|
|
18868
|
+
<dd>
|
|
18869
|
+
|
|
18870
|
+
**from_record:** `Integer` — The number of records to skip before starting to collect the result set.
|
|
18871
|
+
|
|
18872
|
+
</dd>
|
|
18873
|
+
</dl>
|
|
18874
|
+
|
|
18875
|
+
<dl>
|
|
18876
|
+
<dd>
|
|
18877
|
+
|
|
18878
|
+
**limit_record:** `Integer` — Max number of records to return for the query. Use `0` or negative value to return all records.
|
|
18879
|
+
|
|
18880
|
+
</dd>
|
|
18881
|
+
</dl>
|
|
18882
|
+
|
|
18883
|
+
<dl>
|
|
18884
|
+
<dd>
|
|
18885
|
+
|
|
18886
|
+
**parameters:** `Internal::Types::Hash[String, String]`
|
|
18887
|
+
|
|
18888
|
+
|
|
18889
|
+
Collection of field names, conditions, and values used to filter
|
|
18890
|
+
the query.
|
|
18891
|
+
|
|
18892
|
+
<Info>
|
|
18893
|
+
**You must remove `parameters=` from the request before you send it, otherwise Payabli will ignore the filters.**
|
|
18894
|
+
|
|
18895
|
+
Because of a technical limitation, you can't make a request that includes filters from the API console on this page. The response won't be filtered. Instead, copy the request, remove `parameters=` and run the request in a different client.
|
|
18896
|
+
|
|
18897
|
+
For example:
|
|
18898
|
+
|
|
18899
|
+
--url https://api-sandbox.payabli.com/api/Query/devices/8cfec329267?parameters=status=1&limitRecord=20
|
|
18900
|
+
|
|
18901
|
+
should become:
|
|
18902
|
+
|
|
18903
|
+
--url https://api-sandbox.payabli.com/api/Query/devices/8cfec329267?status=1&limitRecord=20
|
|
18904
|
+
</Info>
|
|
18905
|
+
|
|
18906
|
+
See [Filters and Conditions
|
|
18907
|
+
Reference](/developers/developer-guides/pay-ops-reporting-engine-overview#filters-and-conditions-reference)
|
|
18908
|
+
for more information.
|
|
18909
|
+
|
|
18910
|
+
**List of field names accepted:**
|
|
18911
|
+
|
|
18912
|
+
|
|
18913
|
+
- `deviceId` (eq, ne, ct, nct)
|
|
18914
|
+
|
|
18915
|
+
- `serialNumber` (eq, ne, ct, nct)
|
|
18916
|
+
|
|
18917
|
+
- `friendlyName` (eq, ne, ct, nct)
|
|
18918
|
+
|
|
18919
|
+
- `description` (eq, ne, ct, nct)
|
|
18920
|
+
|
|
18921
|
+
- `model` (eq, ne, ct, nct)
|
|
18922
|
+
|
|
18923
|
+
- `make` (eq, ne, ct, nct)
|
|
18924
|
+
|
|
18925
|
+
- `macAddress` (eq, ne, ct, nct)
|
|
18926
|
+
|
|
18927
|
+
- `registrationCode` (eq, ne, ct, nct)
|
|
18928
|
+
|
|
18929
|
+
- `status` (eq, ne, in, nin)
|
|
18930
|
+
|
|
18931
|
+
- `deviceType` (eq, ne, in, nin)
|
|
18932
|
+
|
|
18933
|
+
- `deviceOs` (eq, ne, in, nin)
|
|
18934
|
+
|
|
18935
|
+
- `activationAttempts` (eq, ne, gt, ge, lt, le)
|
|
18936
|
+
|
|
18937
|
+
- `createdDate` (gt, ge, lt, le, eq, ne)
|
|
18938
|
+
|
|
18939
|
+
- `updatedDate` (gt, ge, lt, le, eq, ne)
|
|
18940
|
+
|
|
18941
|
+
- `lastHealthCheck` (gt, ge, lt, le, eq, ne)
|
|
18942
|
+
|
|
18943
|
+
- `activationExpiry` (gt, ge, lt, le, eq, ne). This filter corresponds to the `activationCodeExpiry` response field.
|
|
18944
|
+
|
|
18945
|
+
- `paypointId` (eq, ne)
|
|
18946
|
+
|
|
18947
|
+
- `paypointDba` (eq, ne, ct, nct)
|
|
18948
|
+
|
|
18949
|
+
- `paypointLegal` (eq, ne, ct, nct)
|
|
18950
|
+
|
|
18951
|
+
- `paypointEntry` (eq, ne, ct, nct)
|
|
18952
|
+
|
|
18953
|
+
- `externalPaypointId` (eq, ne, ct, nct)
|
|
18954
|
+
|
|
18955
|
+
- `parentOrgId` (eq, ne)
|
|
18956
|
+
|
|
18957
|
+
- `parentOrgName` (eq, ne, ct, nct)
|
|
18958
|
+
|
|
18959
|
+
|
|
18960
|
+
**List of comparison operators accepted:**
|
|
18961
|
+
|
|
18962
|
+
- `eq` or empty => equal
|
|
18963
|
+
|
|
18964
|
+
- `gt` => greater than
|
|
18965
|
+
|
|
18966
|
+
- `ge` => greater or equal
|
|
18967
|
+
|
|
18968
|
+
- `lt` => less than
|
|
18969
|
+
|
|
18970
|
+
- `le` => less or equal
|
|
18971
|
+
|
|
18972
|
+
- `ne` => not equal
|
|
18973
|
+
|
|
18974
|
+
- `ct` => contains
|
|
18975
|
+
|
|
18976
|
+
- `nct` => not contains
|
|
18977
|
+
|
|
18978
|
+
- `in` => inside array
|
|
18979
|
+
|
|
18980
|
+
- `nin` => not inside array
|
|
18981
|
+
|
|
18982
|
+
</dd>
|
|
18983
|
+
</dl>
|
|
18984
|
+
|
|
18985
|
+
<dl>
|
|
18986
|
+
<dd>
|
|
18987
|
+
|
|
18988
|
+
**sort_by:** `String` — The field name to use for sorting results. Use `desc(field_name)` to sort descending by `field_name`, and use `asc(field_name)` to sort ascending by `field_name`.
|
|
18989
|
+
|
|
18990
|
+
</dd>
|
|
18991
|
+
</dl>
|
|
18992
|
+
|
|
18993
|
+
<dl>
|
|
18994
|
+
<dd>
|
|
18995
|
+
|
|
18996
|
+
**request_options:** `Payabli::Query::RequestOptions`
|
|
18997
|
+
|
|
18998
|
+
</dd>
|
|
18999
|
+
</dl>
|
|
19000
|
+
</dd>
|
|
19001
|
+
</dl>
|
|
19002
|
+
|
|
19003
|
+
|
|
19004
|
+
</dd>
|
|
19005
|
+
</dl>
|
|
19006
|
+
</details>
|
|
19007
|
+
|
|
19008
|
+
<details><summary><code>client.query.<a href="/lib/payabli/query/client.rb">list_devices_org</a>(org_id) -> Payabli::QueryTypes::Types::QueryDeviceResponse</code></summary>
|
|
19009
|
+
<dl>
|
|
19010
|
+
<dd>
|
|
19011
|
+
|
|
19012
|
+
#### 📝 Description
|
|
19013
|
+
|
|
19014
|
+
<dl>
|
|
19015
|
+
<dd>
|
|
19016
|
+
|
|
19017
|
+
<dl>
|
|
19018
|
+
<dd>
|
|
19019
|
+
|
|
19020
|
+
Returns a list of cloud devices for a single organization. Use filters to limit results. Include the `exportFormat` query parameter to return the results as a file instead of a JSON response.
|
|
19021
|
+
</dd>
|
|
19022
|
+
</dl>
|
|
19023
|
+
</dd>
|
|
19024
|
+
</dl>
|
|
19025
|
+
|
|
19026
|
+
#### 🔌 Usage
|
|
19027
|
+
|
|
19028
|
+
<dl>
|
|
19029
|
+
<dd>
|
|
19030
|
+
|
|
19031
|
+
<dl>
|
|
19032
|
+
<dd>
|
|
19033
|
+
|
|
19034
|
+
```ruby
|
|
19035
|
+
client.query.list_devices_org(
|
|
19036
|
+
org_id: 100,
|
|
19037
|
+
from_record: 0,
|
|
19038
|
+
limit_record: 20,
|
|
19039
|
+
sort_by: "desc(createdAt)"
|
|
19040
|
+
)
|
|
19041
|
+
```
|
|
19042
|
+
</dd>
|
|
19043
|
+
</dl>
|
|
19044
|
+
</dd>
|
|
19045
|
+
</dl>
|
|
19046
|
+
|
|
19047
|
+
#### ⚙️ Parameters
|
|
19048
|
+
|
|
19049
|
+
<dl>
|
|
19050
|
+
<dd>
|
|
19051
|
+
|
|
19052
|
+
<dl>
|
|
19053
|
+
<dd>
|
|
19054
|
+
|
|
19055
|
+
**org_id:** `Integer` — The numeric identifier for organization, assigned by Payabli.
|
|
19056
|
+
|
|
19057
|
+
</dd>
|
|
19058
|
+
</dl>
|
|
19059
|
+
|
|
19060
|
+
<dl>
|
|
19061
|
+
<dd>
|
|
19062
|
+
|
|
19063
|
+
**export_format:** `Payabli::Types::ExportFormat`
|
|
19064
|
+
|
|
19065
|
+
</dd>
|
|
19066
|
+
</dl>
|
|
19067
|
+
|
|
19068
|
+
<dl>
|
|
19069
|
+
<dd>
|
|
19070
|
+
|
|
19071
|
+
**from_record:** `Integer` — The number of records to skip before starting to collect the result set.
|
|
19072
|
+
|
|
19073
|
+
</dd>
|
|
19074
|
+
</dl>
|
|
19075
|
+
|
|
19076
|
+
<dl>
|
|
19077
|
+
<dd>
|
|
19078
|
+
|
|
19079
|
+
**limit_record:** `Integer` — Max number of records to return for the query. Use `0` or negative value to return all records.
|
|
19080
|
+
|
|
19081
|
+
</dd>
|
|
19082
|
+
</dl>
|
|
19083
|
+
|
|
19084
|
+
<dl>
|
|
19085
|
+
<dd>
|
|
19086
|
+
|
|
19087
|
+
**parameters:** `Internal::Types::Hash[String, String]`
|
|
19088
|
+
|
|
19089
|
+
|
|
19090
|
+
Collection of field names, conditions, and values used to filter
|
|
19091
|
+
the query.
|
|
19092
|
+
|
|
19093
|
+
<Info>
|
|
19094
|
+
**You must remove `parameters=` from the request before you send it, otherwise Payabli will ignore the filters.**
|
|
19095
|
+
|
|
19096
|
+
Because of a technical limitation, you can't make a request that includes filters from the API console on this page. The response won't be filtered. Instead, copy the request, remove `parameters=` and run the request in a different client.
|
|
19097
|
+
|
|
19098
|
+
For example:
|
|
19099
|
+
|
|
19100
|
+
--url https://api-sandbox.payabli.com/api/Query/devices/org/236?parameters=status=1&limitRecord=20
|
|
19101
|
+
|
|
19102
|
+
should become:
|
|
19103
|
+
|
|
19104
|
+
--url https://api-sandbox.payabli.com/api/Query/devices/org/236?status=1&limitRecord=20
|
|
19105
|
+
</Info>
|
|
19106
|
+
|
|
19107
|
+
See [Filters and Conditions
|
|
19108
|
+
Reference](/developers/developer-guides/pay-ops-reporting-engine-overview#filters-and-conditions-reference)
|
|
19109
|
+
for more information.
|
|
19110
|
+
|
|
19111
|
+
**List of field names accepted:**
|
|
19112
|
+
|
|
19113
|
+
|
|
19114
|
+
- `deviceId` (eq, ne, ct, nct)
|
|
19115
|
+
|
|
19116
|
+
- `serialNumber` (eq, ne, ct, nct)
|
|
19117
|
+
|
|
19118
|
+
- `friendlyName` (eq, ne, ct, nct)
|
|
19119
|
+
|
|
19120
|
+
- `description` (eq, ne, ct, nct)
|
|
19121
|
+
|
|
19122
|
+
- `model` (eq, ne, ct, nct)
|
|
19123
|
+
|
|
19124
|
+
- `make` (eq, ne, ct, nct)
|
|
19125
|
+
|
|
19126
|
+
- `macAddress` (eq, ne, ct, nct)
|
|
19127
|
+
|
|
19128
|
+
- `registrationCode` (eq, ne, ct, nct)
|
|
19129
|
+
|
|
19130
|
+
- `status` (eq, ne, in, nin)
|
|
19131
|
+
|
|
19132
|
+
- `deviceType` (eq, ne, in, nin)
|
|
19133
|
+
|
|
19134
|
+
- `deviceOs` (eq, ne, in, nin)
|
|
19135
|
+
|
|
19136
|
+
- `activationAttempts` (eq, ne, gt, ge, lt, le)
|
|
19137
|
+
|
|
19138
|
+
- `createdDate` (gt, ge, lt, le, eq, ne)
|
|
19139
|
+
|
|
19140
|
+
- `updatedDate` (gt, ge, lt, le, eq, ne)
|
|
19141
|
+
|
|
19142
|
+
- `lastHealthCheck` (gt, ge, lt, le, eq, ne)
|
|
19143
|
+
|
|
19144
|
+
- `activationExpiry` (gt, ge, lt, le, eq, ne). This filter corresponds to the `activationCodeExpiry` response field.
|
|
19145
|
+
|
|
19146
|
+
- `paypointId` (eq, ne)
|
|
19147
|
+
|
|
19148
|
+
- `paypointDba` (eq, ne, ct, nct)
|
|
19149
|
+
|
|
19150
|
+
- `paypointLegal` (eq, ne, ct, nct)
|
|
19151
|
+
|
|
19152
|
+
- `paypointEntry` (eq, ne, ct, nct)
|
|
19153
|
+
|
|
19154
|
+
- `externalPaypointId` (eq, ne, ct, nct)
|
|
19155
|
+
|
|
19156
|
+
- `parentOrgId` (eq, ne)
|
|
19157
|
+
|
|
19158
|
+
- `parentOrgName` (eq, ne, ct, nct)
|
|
19159
|
+
|
|
19160
|
+
|
|
19161
|
+
**List of comparison operators accepted:**
|
|
19162
|
+
|
|
19163
|
+
- `eq` or empty => equal
|
|
19164
|
+
|
|
19165
|
+
- `gt` => greater than
|
|
19166
|
+
|
|
19167
|
+
- `ge` => greater or equal
|
|
19168
|
+
|
|
19169
|
+
- `lt` => less than
|
|
19170
|
+
|
|
19171
|
+
- `le` => less or equal
|
|
19172
|
+
|
|
19173
|
+
- `ne` => not equal
|
|
19174
|
+
|
|
19175
|
+
- `ct` => contains
|
|
19176
|
+
|
|
19177
|
+
- `nct` => not contains
|
|
19178
|
+
|
|
19179
|
+
- `in` => inside array
|
|
19180
|
+
|
|
19181
|
+
- `nin` => not inside array
|
|
19182
|
+
|
|
19183
|
+
</dd>
|
|
19184
|
+
</dl>
|
|
19185
|
+
|
|
19186
|
+
<dl>
|
|
19187
|
+
<dd>
|
|
19188
|
+
|
|
19189
|
+
**sort_by:** `String` — The field name to use for sorting results. Use `desc(field_name)` to sort descending by `field_name`, and use `asc(field_name)` to sort ascending by `field_name`.
|
|
19190
|
+
|
|
19191
|
+
</dd>
|
|
19192
|
+
</dl>
|
|
19193
|
+
|
|
19194
|
+
<dl>
|
|
19195
|
+
<dd>
|
|
19196
|
+
|
|
19197
|
+
**request_options:** `Payabli::Query::RequestOptions`
|
|
19198
|
+
|
|
19199
|
+
</dd>
|
|
19200
|
+
</dl>
|
|
19201
|
+
</dd>
|
|
19202
|
+
</dl>
|
|
19203
|
+
|
|
19204
|
+
|
|
18678
19205
|
</dd>
|
|
18679
19206
|
</dl>
|
|
18680
19207
|
</details>
|
|
@@ -22957,6 +23484,7 @@ List of field names accepted:
|
|
|
22957
23484
|
- `orgName` (ne, eq, ct, nct)
|
|
22958
23485
|
- `externalPaypointId` (ct, nct, eq, ne)
|
|
22959
23486
|
- `paypointId` (in, nin, eq, ne)
|
|
23487
|
+
- `cardType` (eq)
|
|
22960
23488
|
|
|
22961
23489
|
List of comparison accepted - enclosed between parentheses:
|
|
22962
23490
|
|
|
@@ -23111,6 +23639,7 @@ List of field names accepted:
|
|
|
23111
23639
|
- `orgName` (ne, eq, ct, nct)
|
|
23112
23640
|
- `externalPaypointId` (ct, nct, eq, ne)
|
|
23113
23641
|
- `paypointId` (in, nin, eq, ne)
|
|
23642
|
+
- `cardType` (eq)
|
|
23114
23643
|
|
|
23115
23644
|
List of comparison accepted - enclosed between parentheses:
|
|
23116
23645
|
|