payabli 2.2.26 → 2.2.29
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/lib/payabli/boarding/client.rb +75 -0
- data/lib/payabli/boarding/types/create_application_from_paypoint_request.rb +17 -0
- data/lib/payabli/boarding/types/create_application_from_paypoint_response.rb +17 -0
- data/lib/payabli/boarding/types/create_application_from_paypoint_response_data.rb +12 -0
- data/lib/payabli/client.rb +1 -1
- data/lib/payabli/money_out/client.rb +10 -3
- data/lib/payabli/query/client.rb +94 -0
- data/lib/payabli/query/types/list_vcards_transactions_org_request.rb +15 -0
- data/lib/payabli/query/types/list_vcards_transactions_request.rb +15 -0
- data/lib/payabli/query_types/types/query_transfer_summary.rb +1 -0
- data/lib/payabli/query_types/types/transfer_detail_record.rb +1 -0
- data/lib/payabli/query_types/types/v_card_transaction_query_response.rb +13 -0
- data/lib/payabli/query_types/types/v_card_transaction_record.rb +38 -0
- data/lib/payabli/types/customer_summary_record.rb +4 -4
- data/lib/payabli/types/split_count.rb +23 -0
- data/lib/payabli/types/subscription_query_records.rb +2 -1
- data/lib/payabli/types/transaction_query_records.rb +2 -1
- data/lib/payabli/types/transaction_query_records_customer.rb +1 -0
- data/lib/payabli/types/v_card_summary.rb +3 -2
- data/lib/payabli/types/vendor_response_stored_method.rb +1 -1
- 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 +8 -0
- data/reference.md +505 -55
- data/wiremock/wiremock-mappings.json +157 -16
- metadata +10 -2
data/reference.md
CHANGED
|
@@ -2046,6 +2046,136 @@ client.boarding.update_application(app_id: 352)
|
|
|
2046
2046
|
</dl>
|
|
2047
2047
|
|
|
2048
2048
|
|
|
2049
|
+
</dd>
|
|
2050
|
+
</dl>
|
|
2051
|
+
</details>
|
|
2052
|
+
|
|
2053
|
+
<details><summary><code>client.boarding.<a href="/lib/payabli/boarding/client.rb">add_service_to_paypoint_from_app</a>(request) -> Payabli::Boarding::Types::CreateApplicationFromPaypointResponse</code></summary>
|
|
2054
|
+
<dl>
|
|
2055
|
+
<dd>
|
|
2056
|
+
|
|
2057
|
+
#### 📝 Description
|
|
2058
|
+
|
|
2059
|
+
<dl>
|
|
2060
|
+
<dd>
|
|
2061
|
+
|
|
2062
|
+
<dl>
|
|
2063
|
+
<dd>
|
|
2064
|
+
|
|
2065
|
+
Creates a new boarding application linked to an existing paypoint as part of the multi-product boarding flow. Use this endpoint to add new services to a paypoint without creating a duplicate record. The system copies eligible business, contact, banking, and address data from the paypoint to the new application based on 1:1 field matching. The merchant only needs to provide fields that are specific to the new service. See the [Multi-product boarding](/guides/pay-ops-developer-boarding-multi-product) guide for the full flow.
|
|
2066
|
+
</dd>
|
|
2067
|
+
</dl>
|
|
2068
|
+
</dd>
|
|
2069
|
+
</dl>
|
|
2070
|
+
|
|
2071
|
+
#### 🔌 Usage
|
|
2072
|
+
|
|
2073
|
+
<dl>
|
|
2074
|
+
<dd>
|
|
2075
|
+
|
|
2076
|
+
<dl>
|
|
2077
|
+
<dd>
|
|
2078
|
+
|
|
2079
|
+
```ruby
|
|
2080
|
+
client.boarding.add_service_to_paypoint_from_app(
|
|
2081
|
+
paypoint_id: 123,
|
|
2082
|
+
template_id: 456,
|
|
2083
|
+
recipient_email: "merchant@example.com",
|
|
2084
|
+
return_boarding_access_info_in_line: true,
|
|
2085
|
+
on_create: ["submitApplication"]
|
|
2086
|
+
)
|
|
2087
|
+
```
|
|
2088
|
+
</dd>
|
|
2089
|
+
</dl>
|
|
2090
|
+
</dd>
|
|
2091
|
+
</dl>
|
|
2092
|
+
|
|
2093
|
+
#### ⚙️ Parameters
|
|
2094
|
+
|
|
2095
|
+
<dl>
|
|
2096
|
+
<dd>
|
|
2097
|
+
|
|
2098
|
+
<dl>
|
|
2099
|
+
<dd>
|
|
2100
|
+
|
|
2101
|
+
**request:** `Payabli::Boarding::Types::CreateApplicationFromPaypointRequest`
|
|
2102
|
+
|
|
2103
|
+
</dd>
|
|
2104
|
+
</dl>
|
|
2105
|
+
|
|
2106
|
+
<dl>
|
|
2107
|
+
<dd>
|
|
2108
|
+
|
|
2109
|
+
**request_options:** `Payabli::Boarding::RequestOptions`
|
|
2110
|
+
|
|
2111
|
+
</dd>
|
|
2112
|
+
</dl>
|
|
2113
|
+
</dd>
|
|
2114
|
+
</dl>
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
</dd>
|
|
2118
|
+
</dl>
|
|
2119
|
+
</details>
|
|
2120
|
+
|
|
2121
|
+
<details><summary><code>client.boarding.<a href="/lib/payabli/boarding/client.rb">get_applications_by_paypoint_id</a>(paypoint_id) -> Payabli::Types::QueryBoardingAppsListResponse</code></summary>
|
|
2122
|
+
<dl>
|
|
2123
|
+
<dd>
|
|
2124
|
+
|
|
2125
|
+
#### 📝 Description
|
|
2126
|
+
|
|
2127
|
+
<dl>
|
|
2128
|
+
<dd>
|
|
2129
|
+
|
|
2130
|
+
<dl>
|
|
2131
|
+
<dd>
|
|
2132
|
+
|
|
2133
|
+
Returns all boarding applications associated with a specific paypoint, including those created through the multi-product boarding flow. Use this endpoint to track underwriting progress across multiple service additions or to build reporting views. See the [Multi-product boarding](/guides/pay-ops-developer-boarding-multi-product) guide for the full flow.
|
|
2134
|
+
</dd>
|
|
2135
|
+
</dl>
|
|
2136
|
+
</dd>
|
|
2137
|
+
</dl>
|
|
2138
|
+
|
|
2139
|
+
#### 🔌 Usage
|
|
2140
|
+
|
|
2141
|
+
<dl>
|
|
2142
|
+
<dd>
|
|
2143
|
+
|
|
2144
|
+
<dl>
|
|
2145
|
+
<dd>
|
|
2146
|
+
|
|
2147
|
+
```ruby
|
|
2148
|
+
client.boarding.get_applications_by_paypoint_id(paypoint_id: 12345)
|
|
2149
|
+
```
|
|
2150
|
+
</dd>
|
|
2151
|
+
</dl>
|
|
2152
|
+
</dd>
|
|
2153
|
+
</dl>
|
|
2154
|
+
|
|
2155
|
+
#### ⚙️ Parameters
|
|
2156
|
+
|
|
2157
|
+
<dl>
|
|
2158
|
+
<dd>
|
|
2159
|
+
|
|
2160
|
+
<dl>
|
|
2161
|
+
<dd>
|
|
2162
|
+
|
|
2163
|
+
**paypoint_id:** `Integer` — ID of the paypoint to retrieve applications for.
|
|
2164
|
+
|
|
2165
|
+
</dd>
|
|
2166
|
+
</dl>
|
|
2167
|
+
|
|
2168
|
+
<dl>
|
|
2169
|
+
<dd>
|
|
2170
|
+
|
|
2171
|
+
**request_options:** `Payabli::Boarding::RequestOptions`
|
|
2172
|
+
|
|
2173
|
+
</dd>
|
|
2174
|
+
</dl>
|
|
2175
|
+
</dd>
|
|
2176
|
+
</dl>
|
|
2177
|
+
|
|
2178
|
+
|
|
2049
2179
|
</dd>
|
|
2050
2180
|
</dl>
|
|
2051
2181
|
</details>
|
|
@@ -12123,7 +12253,11 @@ client.money_in.voidv_2(trans_id: "10-3ffa27df-b171-44e0-b251-e95fbfc7a723")
|
|
|
12123
12253
|
<dl>
|
|
12124
12254
|
<dd>
|
|
12125
12255
|
|
|
12126
|
-
Authorizes transaction for payout.
|
|
12256
|
+
Authorizes a transaction for payout.
|
|
12257
|
+
|
|
12258
|
+
If you don't pass `autoCapture` with a value of `true`, authorized transactions aren't flagged for settlement until captured. Use the `referenceId` returned in the response to capture the transaction.
|
|
12259
|
+
|
|
12260
|
+
When `autoCapture` is `true`, Payabli captures the transaction asynchronously after authorization. The response confirms only that the transaction was authorized; it doesn't confirm that capture succeeded. To confirm capture, listen for the [`payout_transaction_approvedcaptured`](/developers/webhooks/payout-transaction-approved-captured) webhook event.
|
|
12127
12261
|
</dd>
|
|
12128
12262
|
</dl>
|
|
12129
12263
|
</dd>
|
|
@@ -20964,6 +21098,7 @@ See [Filters and Conditions Reference](/developers/developer-guides/pay-ops-repo
|
|
|
20964
21098
|
- `orgName` (ne, eq, ct, nct)
|
|
20965
21099
|
- `externalPaypointId` (ct, nct, ne, eq)
|
|
20966
21100
|
- `subId` (eq, ne)
|
|
21101
|
+
- `idPmethod` (eq, ne, ct, nct, in, nin). Filters by the subscription's linked stored method identifier (the value returned in `StoredMethod.IdPmethod`). Case-insensitive. Subscriptions without a linked stored method are excluded from matches. Example: `idPmethod(eq,6edcbb56-9c0e-4003-b3d1-99abf149ba0e)`.
|
|
20967
21102
|
- `orderDescription` (ct, nct)
|
|
20968
21103
|
- `cycles` (eq, ne, gt, ge, lt, le)
|
|
20969
21104
|
- `leftcycles` (eq, ne, gt, ge, lt, le)
|
|
@@ -21148,6 +21283,7 @@ See [Filters and Conditions Reference](/developers/developer-guides/pay-ops-repo
|
|
|
21148
21283
|
- `orgName` (ne, eq, ct, nct)
|
|
21149
21284
|
- `externalPaypointId` (ct, nct, ne, eq)
|
|
21150
21285
|
- `subId` (eq, ne)
|
|
21286
|
+
- `idPmethod` (eq, ne, ct, nct, in, nin). Filters by the subscription's linked stored method identifier (the value returned in `StoredMethod.IdPmethod`). Case-insensitive. Subscriptions without a linked stored method are excluded from matches. Example: `idPmethod(eq,6edcbb56-9c0e-4003-b3d1-99abf149ba0e)`.
|
|
21151
21287
|
- `orderDescription` (ct, nct)
|
|
21152
21288
|
- `cycles` (eq, ne, gt, ge, lt, le)
|
|
21153
21289
|
- `leftcycles` (eq, ne, gt, ge, lt, le)
|
|
@@ -21651,6 +21787,7 @@ See [Filters and Conditions Reference](/developers/developer-guides/pay-ops-repo
|
|
|
21651
21787
|
- `scheduleId` (ne, eq)
|
|
21652
21788
|
- `returnId` (ne, eq)
|
|
21653
21789
|
- `refundId` (ne, eq)
|
|
21790
|
+
- `rejectId` (ne, eq)
|
|
21654
21791
|
- `idTrans` (ne, eq)
|
|
21655
21792
|
- `orgId` (ne, eq)
|
|
21656
21793
|
- `paypointId` (ne, eq)
|
|
@@ -21856,6 +21993,7 @@ See [Filters and Conditions Reference](/developers/developer-guides/pay-ops-repo
|
|
|
21856
21993
|
- `scheduleId` (ne, eq)
|
|
21857
21994
|
- `returnId` (ne, eq)
|
|
21858
21995
|
- `refundId` (ne, eq)
|
|
21996
|
+
- `rejectId` (ne, eq)
|
|
21859
21997
|
- `idTrans` (ne, eq)
|
|
21860
21998
|
- `orgId` (ne, eq)
|
|
21861
21999
|
- `paypointId` (ne, eq)
|
|
@@ -23152,6 +23290,7 @@ List of field names accepted:
|
|
|
23152
23290
|
- `ein` (ct, nct, eq, ne)
|
|
23153
23291
|
- `phone` (ct, nct, eq, ne)
|
|
23154
23292
|
- `email` (ct, nct, eq, ne)
|
|
23293
|
+
- `remitEmail` (ct, nct, eq, ne)
|
|
23155
23294
|
- `address` (ct, nct, eq, ne)
|
|
23156
23295
|
- `city` (ct, nct, eq, ne)
|
|
23157
23296
|
- `state` (ct, nct, eq, ne)
|
|
@@ -23314,6 +23453,7 @@ List of field names accepted:
|
|
|
23314
23453
|
- `ein` (ct, nct, eq, ne)
|
|
23315
23454
|
- `phone` (ct, nct, eq, ne)
|
|
23316
23455
|
- `email` (ct, nct, eq, ne)
|
|
23456
|
+
- `remitEmail` (ct, nct, eq, ne)
|
|
23317
23457
|
- `address` (ct, nct, eq, ne)
|
|
23318
23458
|
- `city` (ct, nct, eq, ne)
|
|
23319
23459
|
- `state` (ct, nct, eq, ne)
|
|
@@ -23467,36 +23607,344 @@ Collection of field names, conditions, and values used to filter the query.
|
|
|
23467
23607
|
</Info>
|
|
23468
23608
|
List of field names accepted:
|
|
23469
23609
|
|
|
23470
|
-
- `status` (
|
|
23471
|
-
- `createdAt` (gt, ge, lt, le, eq, ne)
|
|
23472
|
-
- `cardToken` (ct, nct, eq, ne)
|
|
23473
|
-
- `lastFour` (ct, nct, eq, ne)
|
|
23474
|
-
- `expirationDate` (ct, nct, eq, ne)
|
|
23475
|
-
- `payoutId` (
|
|
23476
|
-
- `vendorId` (
|
|
23477
|
-
- `miscData1` (ct, nct, eq, ne)
|
|
23478
|
-
- `miscData2` (ct, nct, eq, ne)
|
|
23479
|
-
- `currentUses` (gt, ge, lt, le, eq, ne)
|
|
23480
|
-
- `amount` (gt, ge, lt, le, eq, ne)
|
|
23481
|
-
- `balance` (gt, ge, lt, le, eq, ne)
|
|
23482
|
-
- `paypointLegal` (ne, eq, ct, nct)
|
|
23483
|
-
- `paypointDba` (ne, eq, ct, nct)
|
|
23484
|
-
- `orgName` (
|
|
23485
|
-
- `externalPaypointId` (ct, nct, eq, ne)
|
|
23486
|
-
- `paypointId` (
|
|
23487
|
-
- `cardType` (eq)
|
|
23610
|
+
- `status` (eq, ne, ct, nct, sw, ew)
|
|
23611
|
+
- `createdAt` (gt, ge, lt, le, eq, ne)
|
|
23612
|
+
- `cardToken` (ct, nct, eq, ne)
|
|
23613
|
+
- `lastFour` (ct, nct, eq, ne)
|
|
23614
|
+
- `expirationDate` (ct, nct, eq, ne)
|
|
23615
|
+
- `payoutId` (eq, ne, gt, ge, lt, le)
|
|
23616
|
+
- `vendorId` (eq, ne, gt, ge, lt, le)
|
|
23617
|
+
- `miscData1` (ct, nct, eq, ne)
|
|
23618
|
+
- `miscData2` (ct, nct, eq, ne)
|
|
23619
|
+
- `currentUses` (gt, ge, lt, le, eq, ne)
|
|
23620
|
+
- `amount` (gt, ge, lt, le, eq, ne)
|
|
23621
|
+
- `balance` (gt, ge, lt, le, eq, ne)
|
|
23622
|
+
- `paypointLegal` (ne, eq, ct, nct)
|
|
23623
|
+
- `paypointDba` (ne, eq, ct, nct)
|
|
23624
|
+
- `orgName` (eq, ne, ct, nct, sw, ew)
|
|
23625
|
+
- `externalPaypointId` (ct, nct, eq, ne)
|
|
23626
|
+
- `paypointId` (eq, ne, gt, ge, lt, le)
|
|
23627
|
+
- `cardType` (eq, ne, gt, ge, lt, le)
|
|
23488
23628
|
|
|
23489
23629
|
List of comparison accepted - enclosed between parentheses:
|
|
23490
23630
|
|
|
23491
|
-
- eq or empty => equal
|
|
23492
|
-
- gt => greater than
|
|
23493
|
-
- ge => greater or equal
|
|
23494
|
-
- lt => less than
|
|
23495
|
-
- le => less or equal
|
|
23496
|
-
- ne => not equal
|
|
23497
|
-
- ct => contains
|
|
23498
|
-
- nct => not contains
|
|
23499
|
-
-
|
|
23631
|
+
- eq or empty => equal
|
|
23632
|
+
- gt => greater than
|
|
23633
|
+
- ge => greater or equal
|
|
23634
|
+
- lt => less than
|
|
23635
|
+
- le => less or equal
|
|
23636
|
+
- ne => not equal
|
|
23637
|
+
- ct => contains
|
|
23638
|
+
- nct => not contains
|
|
23639
|
+
- sw => starts with
|
|
23640
|
+
- ew => ends with
|
|
23641
|
+
- in => inside array separated by "|"
|
|
23642
|
+
- nin => not inside array separated by "|"
|
|
23643
|
+
|
|
23644
|
+
</dd>
|
|
23645
|
+
</dl>
|
|
23646
|
+
|
|
23647
|
+
<dl>
|
|
23648
|
+
<dd>
|
|
23649
|
+
|
|
23650
|
+
**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`.
|
|
23651
|
+
|
|
23652
|
+
</dd>
|
|
23653
|
+
</dl>
|
|
23654
|
+
|
|
23655
|
+
<dl>
|
|
23656
|
+
<dd>
|
|
23657
|
+
|
|
23658
|
+
**request_options:** `Payabli::Query::RequestOptions`
|
|
23659
|
+
|
|
23660
|
+
</dd>
|
|
23661
|
+
</dl>
|
|
23662
|
+
</dd>
|
|
23663
|
+
</dl>
|
|
23664
|
+
|
|
23665
|
+
|
|
23666
|
+
</dd>
|
|
23667
|
+
</dl>
|
|
23668
|
+
</details>
|
|
23669
|
+
|
|
23670
|
+
<details><summary><code>client.query.<a href="/lib/payabli/query/client.rb">list_vcards_transactions</a>(entry) -> Payabli::QueryTypes::Types::VCardTransactionQueryResponse</code></summary>
|
|
23671
|
+
<dl>
|
|
23672
|
+
<dd>
|
|
23673
|
+
|
|
23674
|
+
#### 📝 Description
|
|
23675
|
+
|
|
23676
|
+
<dl>
|
|
23677
|
+
<dd>
|
|
23678
|
+
|
|
23679
|
+
<dl>
|
|
23680
|
+
<dd>
|
|
23681
|
+
|
|
23682
|
+
Retrieve a list of virtual card transactions for an entrypoint. Use filters to limit results.
|
|
23683
|
+
</dd>
|
|
23684
|
+
</dl>
|
|
23685
|
+
</dd>
|
|
23686
|
+
</dl>
|
|
23687
|
+
|
|
23688
|
+
#### 🔌 Usage
|
|
23689
|
+
|
|
23690
|
+
<dl>
|
|
23691
|
+
<dd>
|
|
23692
|
+
|
|
23693
|
+
<dl>
|
|
23694
|
+
<dd>
|
|
23695
|
+
|
|
23696
|
+
```ruby
|
|
23697
|
+
client.query.list_vcards_transactions(
|
|
23698
|
+
entry: "8cfec329267",
|
|
23699
|
+
from_record: 0,
|
|
23700
|
+
limit_record: 20,
|
|
23701
|
+
sort_by: "desc(CreatedOn)"
|
|
23702
|
+
)
|
|
23703
|
+
```
|
|
23704
|
+
</dd>
|
|
23705
|
+
</dl>
|
|
23706
|
+
</dd>
|
|
23707
|
+
</dl>
|
|
23708
|
+
|
|
23709
|
+
#### ⚙️ Parameters
|
|
23710
|
+
|
|
23711
|
+
<dl>
|
|
23712
|
+
<dd>
|
|
23713
|
+
|
|
23714
|
+
<dl>
|
|
23715
|
+
<dd>
|
|
23716
|
+
|
|
23717
|
+
**entry:** `String`
|
|
23718
|
+
|
|
23719
|
+
</dd>
|
|
23720
|
+
</dl>
|
|
23721
|
+
|
|
23722
|
+
<dl>
|
|
23723
|
+
<dd>
|
|
23724
|
+
|
|
23725
|
+
**from_record:** `Integer` — The number of records to skip before starting to collect the result set.
|
|
23726
|
+
|
|
23727
|
+
</dd>
|
|
23728
|
+
</dl>
|
|
23729
|
+
|
|
23730
|
+
<dl>
|
|
23731
|
+
<dd>
|
|
23732
|
+
|
|
23733
|
+
**limit_record:** `Integer` — Max number of records to return for the query. Use `0` or negative value to return all records.
|
|
23734
|
+
|
|
23735
|
+
</dd>
|
|
23736
|
+
</dl>
|
|
23737
|
+
|
|
23738
|
+
<dl>
|
|
23739
|
+
<dd>
|
|
23740
|
+
|
|
23741
|
+
**parameters:** `Internal::Types::Hash[String, String]`
|
|
23742
|
+
|
|
23743
|
+
Collection of field names, conditions, and values used to filter the query.
|
|
23744
|
+
|
|
23745
|
+
<Info>
|
|
23746
|
+
**You must remove `parameters=` from the request before you send it, otherwise Payabli will ignore the filters.**
|
|
23747
|
+
|
|
23748
|
+
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.
|
|
23749
|
+
|
|
23750
|
+
For example:
|
|
23751
|
+
|
|
23752
|
+
--url https://api-sandbox.payabli.com/api/Query/vcardsTransactions/8cfec329267?parameters=transactionAmount(gt)=100&limitRecord=20
|
|
23753
|
+
|
|
23754
|
+
should become:
|
|
23755
|
+
|
|
23756
|
+
--url https://api-sandbox.payabli.com/api/Query/vcardsTransactions/8cfec329267?transactionAmount(gt)=100&limitRecord=20
|
|
23757
|
+
</Info>
|
|
23758
|
+
|
|
23759
|
+
List of field names accepted:
|
|
23760
|
+
|
|
23761
|
+
- `identifier` (eq, ne, ct, nct)
|
|
23762
|
+
- `transactionType` (eq, ne, ct, nct)
|
|
23763
|
+
- `transactionStatus` (eq, ne, ct, nct, in, nin)
|
|
23764
|
+
- `transactionAmount` (eq, ne, gt, ge, lt, le, ct, nct)
|
|
23765
|
+
- `transactionCreatedOn` (eq, ne, gt, ge, lt, le)
|
|
23766
|
+
- `cardToken` (ct, nct, eq, ne)
|
|
23767
|
+
- `lastFour` (ct, nct, eq, ne)
|
|
23768
|
+
- `expirationDate` (ct, nct, eq, ne)
|
|
23769
|
+
- `mcc` (ct, nct, eq, ne)
|
|
23770
|
+
- `payoutId` (gt, lt, eq, ne)
|
|
23771
|
+
- `customerId` (gt, lt, eq, ne)
|
|
23772
|
+
- `vendorId` (gt, lt, eq, ne)
|
|
23773
|
+
- `miscData1` (ct, nct, eq, ne)
|
|
23774
|
+
- `miscData2` (ct, nct, eq, ne)
|
|
23775
|
+
- `currentUses` (gt, ge, lt, le, eq, ne)
|
|
23776
|
+
- `amount` (gt, ge, lt, le, eq, ne)
|
|
23777
|
+
- `balance` (gt, ge, lt, le, eq, ne)
|
|
23778
|
+
- `paypointLegal` (ne, eq, ct, nct)
|
|
23779
|
+
- `paypointDba` (ne, eq, ct, nct)
|
|
23780
|
+
- `orgName` (ne, eq, ct, nct, in, nin)
|
|
23781
|
+
- `externalPaypointID` (ct, nct, eq, ne)
|
|
23782
|
+
- `paypointId` (gt, lt, eq, ne)
|
|
23783
|
+
|
|
23784
|
+
List of comparison accepted - enclosed between parentheses:
|
|
23785
|
+
|
|
23786
|
+
- eq or empty => equal
|
|
23787
|
+
- gt => greater than
|
|
23788
|
+
- ge => greater or equal
|
|
23789
|
+
- lt => less than
|
|
23790
|
+
- le => less or equal
|
|
23791
|
+
- ne => not equal
|
|
23792
|
+
- ct => contains
|
|
23793
|
+
- nct => not contains
|
|
23794
|
+
- in => inside array separated by "|"
|
|
23795
|
+
- nin => not inside array separated by "|"
|
|
23796
|
+
|
|
23797
|
+
</dd>
|
|
23798
|
+
</dl>
|
|
23799
|
+
|
|
23800
|
+
<dl>
|
|
23801
|
+
<dd>
|
|
23802
|
+
|
|
23803
|
+
**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`.
|
|
23804
|
+
|
|
23805
|
+
</dd>
|
|
23806
|
+
</dl>
|
|
23807
|
+
|
|
23808
|
+
<dl>
|
|
23809
|
+
<dd>
|
|
23810
|
+
|
|
23811
|
+
**request_options:** `Payabli::Query::RequestOptions`
|
|
23812
|
+
|
|
23813
|
+
</dd>
|
|
23814
|
+
</dl>
|
|
23815
|
+
</dd>
|
|
23816
|
+
</dl>
|
|
23817
|
+
|
|
23818
|
+
|
|
23819
|
+
</dd>
|
|
23820
|
+
</dl>
|
|
23821
|
+
</details>
|
|
23822
|
+
|
|
23823
|
+
<details><summary><code>client.query.<a href="/lib/payabli/query/client.rb">list_vcards_transactions_org</a>(org_id) -> Payabli::QueryTypes::Types::VCardTransactionQueryResponse</code></summary>
|
|
23824
|
+
<dl>
|
|
23825
|
+
<dd>
|
|
23826
|
+
|
|
23827
|
+
#### 📝 Description
|
|
23828
|
+
|
|
23829
|
+
<dl>
|
|
23830
|
+
<dd>
|
|
23831
|
+
|
|
23832
|
+
<dl>
|
|
23833
|
+
<dd>
|
|
23834
|
+
|
|
23835
|
+
Retrieve a list of virtual card transactions for an organization. Use filters to limit results.
|
|
23836
|
+
</dd>
|
|
23837
|
+
</dl>
|
|
23838
|
+
</dd>
|
|
23839
|
+
</dl>
|
|
23840
|
+
|
|
23841
|
+
#### 🔌 Usage
|
|
23842
|
+
|
|
23843
|
+
<dl>
|
|
23844
|
+
<dd>
|
|
23845
|
+
|
|
23846
|
+
<dl>
|
|
23847
|
+
<dd>
|
|
23848
|
+
|
|
23849
|
+
```ruby
|
|
23850
|
+
client.query.list_vcards_transactions_org(
|
|
23851
|
+
org_id: 123,
|
|
23852
|
+
from_record: 0,
|
|
23853
|
+
limit_record: 20,
|
|
23854
|
+
sort_by: "desc(CreatedOn)"
|
|
23855
|
+
)
|
|
23856
|
+
```
|
|
23857
|
+
</dd>
|
|
23858
|
+
</dl>
|
|
23859
|
+
</dd>
|
|
23860
|
+
</dl>
|
|
23861
|
+
|
|
23862
|
+
#### ⚙️ Parameters
|
|
23863
|
+
|
|
23864
|
+
<dl>
|
|
23865
|
+
<dd>
|
|
23866
|
+
|
|
23867
|
+
<dl>
|
|
23868
|
+
<dd>
|
|
23869
|
+
|
|
23870
|
+
**org_id:** `Integer` — The numeric identifier for organization, assigned by Payabli.
|
|
23871
|
+
|
|
23872
|
+
</dd>
|
|
23873
|
+
</dl>
|
|
23874
|
+
|
|
23875
|
+
<dl>
|
|
23876
|
+
<dd>
|
|
23877
|
+
|
|
23878
|
+
**from_record:** `Integer` — The number of records to skip before starting to collect the result set.
|
|
23879
|
+
|
|
23880
|
+
</dd>
|
|
23881
|
+
</dl>
|
|
23882
|
+
|
|
23883
|
+
<dl>
|
|
23884
|
+
<dd>
|
|
23885
|
+
|
|
23886
|
+
**limit_record:** `Integer` — Max number of records to return for the query. Use `0` or negative value to return all records.
|
|
23887
|
+
|
|
23888
|
+
</dd>
|
|
23889
|
+
</dl>
|
|
23890
|
+
|
|
23891
|
+
<dl>
|
|
23892
|
+
<dd>
|
|
23893
|
+
|
|
23894
|
+
**parameters:** `Internal::Types::Hash[String, String]`
|
|
23895
|
+
|
|
23896
|
+
Collection of field names, conditions, and values used to filter the query.
|
|
23897
|
+
|
|
23898
|
+
<Info>
|
|
23899
|
+
**You must remove `parameters=` from the request before you send it, otherwise Payabli will ignore the filters.**
|
|
23900
|
+
|
|
23901
|
+
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.
|
|
23902
|
+
|
|
23903
|
+
For example:
|
|
23904
|
+
|
|
23905
|
+
--url https://api-sandbox.payabli.com/api/Query/vcardsTransactions/org/236?parameters=transactionAmount(gt)=100&limitRecord=20
|
|
23906
|
+
|
|
23907
|
+
should become:
|
|
23908
|
+
|
|
23909
|
+
--url https://api-sandbox.payabli.com/api/Query/vcardsTransactions/org/236?transactionAmount(gt)=100&limitRecord=20
|
|
23910
|
+
</Info>
|
|
23911
|
+
|
|
23912
|
+
List of field names accepted:
|
|
23913
|
+
|
|
23914
|
+
- `identifier` (eq, ne, ct, nct)
|
|
23915
|
+
- `transactionType` (eq, ne, ct, nct)
|
|
23916
|
+
- `transactionStatus` (eq, ne, ct, nct, in, nin)
|
|
23917
|
+
- `transactionAmount` (eq, ne, gt, ge, lt, le, ct, nct)
|
|
23918
|
+
- `transactionCreatedOn` (eq, ne, gt, ge, lt, le)
|
|
23919
|
+
- `cardToken` (ct, nct, eq, ne)
|
|
23920
|
+
- `lastFour` (ct, nct, eq, ne)
|
|
23921
|
+
- `expirationDate` (ct, nct, eq, ne)
|
|
23922
|
+
- `mcc` (ct, nct, eq, ne)
|
|
23923
|
+
- `payoutId` (gt, lt, eq, ne)
|
|
23924
|
+
- `customerId` (gt, lt, eq, ne)
|
|
23925
|
+
- `vendorId` (gt, lt, eq, ne)
|
|
23926
|
+
- `miscData1` (ct, nct, eq, ne)
|
|
23927
|
+
- `miscData2` (ct, nct, eq, ne)
|
|
23928
|
+
- `currentUses` (gt, ge, lt, le, eq, ne)
|
|
23929
|
+
- `amount` (gt, ge, lt, le, eq, ne)
|
|
23930
|
+
- `balance` (gt, ge, lt, le, eq, ne)
|
|
23931
|
+
- `paypointLegal` (ne, eq, ct, nct)
|
|
23932
|
+
- `paypointDba` (ne, eq, ct, nct)
|
|
23933
|
+
- `orgName` (ne, eq, ct, nct, in, nin)
|
|
23934
|
+
- `externalPaypointID` (ct, nct, eq, ne)
|
|
23935
|
+
- `paypointId` (gt, lt, eq, ne)
|
|
23936
|
+
|
|
23937
|
+
List of comparison accepted - enclosed between parentheses:
|
|
23938
|
+
|
|
23939
|
+
- eq or empty => equal
|
|
23940
|
+
- gt => greater than
|
|
23941
|
+
- ge => greater or equal
|
|
23942
|
+
- lt => less than
|
|
23943
|
+
- le => less or equal
|
|
23944
|
+
- ne => not equal
|
|
23945
|
+
- ct => contains
|
|
23946
|
+
- nct => not contains
|
|
23947
|
+
- in => inside array separated by "|"
|
|
23500
23948
|
- nin => not inside array separated by "|"
|
|
23501
23949
|
|
|
23502
23950
|
</dd>
|
|
@@ -23622,36 +24070,38 @@ Collection of field names, conditions, and values used to filter the query.
|
|
|
23622
24070
|
</Info>
|
|
23623
24071
|
List of field names accepted:
|
|
23624
24072
|
|
|
23625
|
-
- `status` (
|
|
23626
|
-
- `createdAt` (gt, ge, lt, le, eq, ne)
|
|
23627
|
-
- `cardToken` (ct, nct, eq, ne)
|
|
23628
|
-
- `lastFour` (ct, nct, eq, ne)
|
|
23629
|
-
- `expirationDate` (ct, nct, eq, ne)
|
|
23630
|
-
- `payoutId` (
|
|
23631
|
-
- `vendorId` (
|
|
23632
|
-
- `miscData1` (ct, nct, eq, ne)
|
|
23633
|
-
- `miscData2` (ct, nct, eq, ne)
|
|
23634
|
-
- `currentUses` (gt, ge, lt, le, eq, ne)
|
|
23635
|
-
- `amount` (gt, ge, lt, le, eq, ne)
|
|
23636
|
-
- `balance` (gt, ge, lt, le, eq, ne)
|
|
23637
|
-
- `paypointLegal` (ne, eq, ct, nct)
|
|
23638
|
-
- `paypointDba` (ne, eq, ct, nct)
|
|
23639
|
-
- `orgName` (
|
|
23640
|
-
- `externalPaypointId` (ct, nct, eq, ne)
|
|
23641
|
-
- `paypointId` (
|
|
23642
|
-
- `cardType` (eq)
|
|
24073
|
+
- `status` (eq, ne, ct, nct, sw, ew)
|
|
24074
|
+
- `createdAt` (gt, ge, lt, le, eq, ne)
|
|
24075
|
+
- `cardToken` (ct, nct, eq, ne)
|
|
24076
|
+
- `lastFour` (ct, nct, eq, ne)
|
|
24077
|
+
- `expirationDate` (ct, nct, eq, ne)
|
|
24078
|
+
- `payoutId` (eq, ne, gt, ge, lt, le)
|
|
24079
|
+
- `vendorId` (eq, ne, gt, ge, lt, le)
|
|
24080
|
+
- `miscData1` (ct, nct, eq, ne)
|
|
24081
|
+
- `miscData2` (ct, nct, eq, ne)
|
|
24082
|
+
- `currentUses` (gt, ge, lt, le, eq, ne)
|
|
24083
|
+
- `amount` (gt, ge, lt, le, eq, ne)
|
|
24084
|
+
- `balance` (gt, ge, lt, le, eq, ne)
|
|
24085
|
+
- `paypointLegal` (ne, eq, ct, nct)
|
|
24086
|
+
- `paypointDba` (ne, eq, ct, nct)
|
|
24087
|
+
- `orgName` (eq, ne, ct, nct, sw, ew)
|
|
24088
|
+
- `externalPaypointId` (ct, nct, eq, ne)
|
|
24089
|
+
- `paypointId` (eq, ne, gt, ge, lt, le)
|
|
24090
|
+
- `cardType` (eq, ne, gt, ge, lt, le)
|
|
23643
24091
|
|
|
23644
24092
|
List of comparison accepted - enclosed between parentheses:
|
|
23645
24093
|
|
|
23646
|
-
- eq or empty => equal
|
|
23647
|
-
- gt => greater than
|
|
23648
|
-
- ge => greater or equal
|
|
23649
|
-
- lt => less than
|
|
23650
|
-
- le => less or equal
|
|
23651
|
-
- ne => not equal
|
|
23652
|
-
- ct => contains
|
|
23653
|
-
- nct => not contains
|
|
23654
|
-
-
|
|
24094
|
+
- eq or empty => equal
|
|
24095
|
+
- gt => greater than
|
|
24096
|
+
- ge => greater or equal
|
|
24097
|
+
- lt => less than
|
|
24098
|
+
- le => less or equal
|
|
24099
|
+
- ne => not equal
|
|
24100
|
+
- ct => contains
|
|
24101
|
+
- nct => not contains
|
|
24102
|
+
- sw => starts with
|
|
24103
|
+
- ew => ends with
|
|
24104
|
+
- in => inside array separated by "|"
|
|
23655
24105
|
- nin => not inside array separated by "|"
|
|
23656
24106
|
|
|
23657
24107
|
</dd>
|