payabli 2.2.25 → 2.2.27
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_in/types/transaction_detail_customer.rb +16 -16
- data/lib/payabli/money_out/client.rb +10 -3
- data/lib/payabli/types/customer_summary_record.rb +4 -4
- data/lib/payabli/types/subscription_query_records.rb +1 -1
- data/lib/payabli/types/transaction_query_records.rb +1 -1
- data/lib/payabli/v_2_money_in_types/types/v_2_transaction_details.rb +2 -2
- data/lib/payabli/version.rb +1 -1
- data/lib/payabli.rb +3 -0
- data/reference.md +135 -1
- data/wiremock/wiremock-mappings.json +67 -10
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6fe4c1eb951b5b2834d95fcc20169f67b6e09934c0c6215a0cd8c56aa71f50d
|
|
4
|
+
data.tar.gz: 7d3dd43cda3b300e3f00cbb5ed69c4ea33a54e500abdf375cb899d3489321d98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c1549d6b5cbdcf262f6dd78fea18d6ed1e3eb287212922e564fb66ab0a9ae6d383e3cc287be5246e0f4605e8a81e722388ba5c9ca55a32627360f6e911d1e52
|
|
7
|
+
data.tar.gz: e8dbbaa0c6be087ff8de29f392199416b5d8972289eb0209aed5ef25001f05f7225c4cc545de65a87fe05ebd230c85264999a99ea9b35706f74d9ce737166ba1
|
data/.fern/metadata.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"cliVersion": "
|
|
2
|
+
"cliVersion": "5.7.9",
|
|
3
3
|
"generatorName": "fernapi/fern-ruby-sdk",
|
|
4
4
|
"generatorVersion": "1.1.13",
|
|
5
5
|
"generatorConfig": {
|
|
6
6
|
"enableWireTests": true,
|
|
7
7
|
"rubocopVariableNumberStyle": "snake_case"
|
|
8
8
|
},
|
|
9
|
-
"originGitCommit": "
|
|
10
|
-
"sdkVersion": "2.2.
|
|
9
|
+
"originGitCommit": "72fdff3484316d01ba20c78f02c52cde8b292f54",
|
|
10
|
+
"sdkVersion": "2.2.27"
|
|
11
11
|
}
|
|
@@ -428,6 +428,81 @@ module Payabli
|
|
|
428
428
|
raise error_class.new(response.body, code: code)
|
|
429
429
|
end
|
|
430
430
|
end
|
|
431
|
+
|
|
432
|
+
# Creates a new boarding application linked to an existing paypoint as part of the multi-product boarding flow.
|
|
433
|
+
# Use this endpoint to add new services to a paypoint without creating a duplicate record. The system copies
|
|
434
|
+
# eligible business, contact, banking, and address data from the paypoint to the new application based on 1:1
|
|
435
|
+
# field matching. The merchant only needs to provide fields that are specific to the new service. See the
|
|
436
|
+
# [Multi-product boarding](/guides/pay-ops-developer-boarding-multi-product) guide for the full flow.
|
|
437
|
+
#
|
|
438
|
+
# @param request_options [Hash]
|
|
439
|
+
# @param params [Payabli::Boarding::Types::CreateApplicationFromPaypointRequest]
|
|
440
|
+
# @option request_options [String] :base_url
|
|
441
|
+
# @option request_options [Hash{String => Object}] :additional_headers
|
|
442
|
+
# @option request_options [Hash{String => Object}] :additional_query_parameters
|
|
443
|
+
# @option request_options [Hash{String => Object}] :additional_body_parameters
|
|
444
|
+
# @option request_options [Integer] :timeout_in_seconds
|
|
445
|
+
#
|
|
446
|
+
# @return [Payabli::Boarding::Types::CreateApplicationFromPaypointResponse]
|
|
447
|
+
def add_service_to_paypoint_from_app(request_options: {}, **params)
|
|
448
|
+
params = Payabli::Internal::Types::Utils.normalize_keys(params)
|
|
449
|
+
request = Payabli::Internal::JSON::Request.new(
|
|
450
|
+
base_url: request_options[:base_url],
|
|
451
|
+
method: "POST",
|
|
452
|
+
path: "Boarding/applications",
|
|
453
|
+
body: Payabli::Boarding::Types::CreateApplicationFromPaypointRequest.new(params).to_h,
|
|
454
|
+
request_options: request_options
|
|
455
|
+
)
|
|
456
|
+
begin
|
|
457
|
+
response = @client.send(request)
|
|
458
|
+
rescue Net::HTTPRequestTimeout
|
|
459
|
+
raise Payabli::Errors::TimeoutError
|
|
460
|
+
end
|
|
461
|
+
code = response.code.to_i
|
|
462
|
+
if code.between?(200, 299)
|
|
463
|
+
Payabli::Boarding::Types::CreateApplicationFromPaypointResponse.load(response.body)
|
|
464
|
+
else
|
|
465
|
+
error_class = Payabli::Errors::ResponseError.subclass_for_code(code)
|
|
466
|
+
raise error_class.new(response.body, code: code)
|
|
467
|
+
end
|
|
468
|
+
end
|
|
469
|
+
|
|
470
|
+
# Returns all boarding applications associated with a specific paypoint, including those created through the
|
|
471
|
+
# multi-product boarding flow. Use this endpoint to track underwriting progress across multiple service additions
|
|
472
|
+
# or to build reporting views. See the [Multi-product boarding](/guides/pay-ops-developer-boarding-multi-product)
|
|
473
|
+
# guide for the full flow.
|
|
474
|
+
#
|
|
475
|
+
# @param request_options [Hash]
|
|
476
|
+
# @param params [Hash]
|
|
477
|
+
# @option request_options [String] :base_url
|
|
478
|
+
# @option request_options [Hash{String => Object}] :additional_headers
|
|
479
|
+
# @option request_options [Hash{String => Object}] :additional_query_parameters
|
|
480
|
+
# @option request_options [Hash{String => Object}] :additional_body_parameters
|
|
481
|
+
# @option request_options [Integer] :timeout_in_seconds
|
|
482
|
+
# @option params [Integer] :paypoint_id
|
|
483
|
+
#
|
|
484
|
+
# @return [Payabli::Types::QueryBoardingAppsListResponse]
|
|
485
|
+
def get_applications_by_paypoint_id(request_options: {}, **params)
|
|
486
|
+
params = Payabli::Internal::Types::Utils.normalize_keys(params)
|
|
487
|
+
request = Payabli::Internal::JSON::Request.new(
|
|
488
|
+
base_url: request_options[:base_url],
|
|
489
|
+
method: "GET",
|
|
490
|
+
path: "Boarding/applications/#{URI.encode_uri_component(params[:paypoint_id].to_s)}",
|
|
491
|
+
request_options: request_options
|
|
492
|
+
)
|
|
493
|
+
begin
|
|
494
|
+
response = @client.send(request)
|
|
495
|
+
rescue Net::HTTPRequestTimeout
|
|
496
|
+
raise Payabli::Errors::TimeoutError
|
|
497
|
+
end
|
|
498
|
+
code = response.code.to_i
|
|
499
|
+
if code.between?(200, 299)
|
|
500
|
+
Payabli::Types::QueryBoardingAppsListResponse.load(response.body)
|
|
501
|
+
else
|
|
502
|
+
error_class = Payabli::Errors::ResponseError.subclass_for_code(code)
|
|
503
|
+
raise error_class.new(response.body, code: code)
|
|
504
|
+
end
|
|
505
|
+
end
|
|
431
506
|
end
|
|
432
507
|
end
|
|
433
508
|
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Payabli
|
|
4
|
+
module Boarding
|
|
5
|
+
module Types
|
|
6
|
+
# Request to create a boarding application linked to an existing paypoint. Used for adding new services to a
|
|
7
|
+
# paypoint without creating a duplicate record.
|
|
8
|
+
class CreateApplicationFromPaypointRequest < Internal::Types::Model
|
|
9
|
+
field :paypoint_id, -> { Integer }, optional: false, nullable: false, api_name: "paypointId"
|
|
10
|
+
field :template_id, -> { Integer }, optional: false, nullable: false, api_name: "templateId"
|
|
11
|
+
field :recipient_email, -> { String }, optional: false, nullable: false, api_name: "recipientEmail"
|
|
12
|
+
field :return_boarding_access_info_in_line, -> { Internal::Types::Boolean }, optional: true, nullable: false, api_name: "returnBoardingAccessInfoInLine"
|
|
13
|
+
field :on_create, -> { Internal::Types::Array[String] }, optional: true, nullable: false, api_name: "onCreate"
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Payabli
|
|
4
|
+
module Boarding
|
|
5
|
+
module Types
|
|
6
|
+
# Response returned when creating a boarding application linked to an existing paypoint.
|
|
7
|
+
class CreateApplicationFromPaypointResponse < Internal::Types::Model
|
|
8
|
+
field :response_code, -> { Integer }, optional: true, nullable: false, api_name: "responseCode"
|
|
9
|
+
field :page_identifier, -> { String }, optional: true, nullable: false, api_name: "pageIdentifier"
|
|
10
|
+
field :room_id, -> { Integer }, optional: true, nullable: false, api_name: "roomId"
|
|
11
|
+
field :is_success, -> { Internal::Types::Boolean }, optional: true, nullable: false, api_name: "isSuccess"
|
|
12
|
+
field :response_text, -> { String }, optional: false, nullable: false, api_name: "responseText"
|
|
13
|
+
field :response_data, -> { Payabli::Boarding::Types::CreateApplicationFromPaypointResponseData }, optional: true, nullable: false, api_name: "responseData"
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Payabli
|
|
4
|
+
module Boarding
|
|
5
|
+
module Types
|
|
6
|
+
class CreateApplicationFromPaypointResponseData < Internal::Types::Model
|
|
7
|
+
field :app_id, -> { Integer }, optional: true, nullable: false, api_name: "appId"
|
|
8
|
+
field :boarding_link, -> { String }, optional: true, nullable: false, api_name: "boardingLink"
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
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.27",
|
|
14
14
|
"X-Fern-Language" => "Ruby",
|
|
15
15
|
requestToken: api_key.to_s
|
|
16
16
|
}
|
|
@@ -8,22 +8,22 @@ module Payabli
|
|
|
8
8
|
field :identifiers, -> { Internal::Types::Array[String] }, optional: false, nullable: true
|
|
9
9
|
field :first_name, -> { String }, optional: false, nullable: false, api_name: "firstName"
|
|
10
10
|
field :last_name, -> { String }, optional: false, nullable: false, api_name: "lastName"
|
|
11
|
-
field :company_name, -> { String }, optional: false, nullable:
|
|
12
|
-
field :billing_address_1, -> { String }, optional: false, nullable:
|
|
13
|
-
field :billing_address_2, -> { String }, optional: false, nullable:
|
|
14
|
-
field :billing_city, -> { String }, optional: false, nullable:
|
|
15
|
-
field :billing_state, -> { String }, optional: false, nullable:
|
|
16
|
-
field :billing_zip, -> { String }, optional: false, nullable:
|
|
17
|
-
field :billing_country, -> { String }, optional: false, nullable:
|
|
18
|
-
field :billing_phone, -> { String }, optional: false, nullable:
|
|
19
|
-
field :billing_email, -> { String }, optional: false, nullable:
|
|
20
|
-
field :customer_number, -> { String }, optional: false, nullable:
|
|
21
|
-
field :shipping_address_1, -> { String }, optional: false, nullable:
|
|
22
|
-
field :shipping_address_2, -> { String }, optional: false, nullable:
|
|
23
|
-
field :shipping_city, -> { String }, optional: false, nullable:
|
|
24
|
-
field :shipping_state, -> { String }, optional: false, nullable:
|
|
25
|
-
field :shipping_zip, -> { String }, optional: false, nullable:
|
|
26
|
-
field :shipping_country, -> { String }, optional: false, nullable:
|
|
11
|
+
field :company_name, -> { String }, optional: false, nullable: true, api_name: "companyName"
|
|
12
|
+
field :billing_address_1, -> { String }, optional: false, nullable: true, api_name: "billingAddress1"
|
|
13
|
+
field :billing_address_2, -> { String }, optional: false, nullable: true, api_name: "billingAddress2"
|
|
14
|
+
field :billing_city, -> { String }, optional: false, nullable: true, api_name: "billingCity"
|
|
15
|
+
field :billing_state, -> { String }, optional: false, nullable: true, api_name: "billingState"
|
|
16
|
+
field :billing_zip, -> { String }, optional: false, nullable: true, api_name: "billingZip"
|
|
17
|
+
field :billing_country, -> { String }, optional: false, nullable: true, api_name: "billingCountry"
|
|
18
|
+
field :billing_phone, -> { String }, optional: false, nullable: true, api_name: "billingPhone"
|
|
19
|
+
field :billing_email, -> { String }, optional: false, nullable: true, api_name: "billingEmail"
|
|
20
|
+
field :customer_number, -> { String }, optional: false, nullable: true, api_name: "customerNumber"
|
|
21
|
+
field :shipping_address_1, -> { String }, optional: false, nullable: true, api_name: "shippingAddress1"
|
|
22
|
+
field :shipping_address_2, -> { String }, optional: false, nullable: true, api_name: "shippingAddress2"
|
|
23
|
+
field :shipping_city, -> { String }, optional: false, nullable: true, api_name: "shippingCity"
|
|
24
|
+
field :shipping_state, -> { String }, optional: false, nullable: true, api_name: "shippingState"
|
|
25
|
+
field :shipping_zip, -> { String }, optional: false, nullable: true, api_name: "shippingZip"
|
|
26
|
+
field :shipping_country, -> { String }, optional: false, nullable: true, api_name: "shippingCountry"
|
|
27
27
|
field :customer_id, -> { Integer }, optional: false, nullable: false, api_name: "customerId"
|
|
28
28
|
field :customer_status, -> { Integer }, optional: false, nullable: false, api_name: "customerStatus"
|
|
29
29
|
field :additional_data, -> { Internal::Types::Hash[String, String] }, optional: false, nullable: true, api_name: "additionalData"
|
|
@@ -10,9 +10,16 @@ module Payabli
|
|
|
10
10
|
@client = client
|
|
11
11
|
end
|
|
12
12
|
|
|
13
|
-
# Authorizes transaction for payout.
|
|
14
|
-
#
|
|
15
|
-
#
|
|
13
|
+
# Authorizes a transaction for payout.
|
|
14
|
+
#
|
|
15
|
+
# If you don't pass `autoCapture` with a value of `true`, authorized transactions aren't flagged for settlement
|
|
16
|
+
# until captured. Use the `referenceId` returned in the response to capture the transaction.
|
|
17
|
+
#
|
|
18
|
+
# When `autoCapture` is `true`, Payabli captures the transaction asynchronously after authorization. The response
|
|
19
|
+
# confirms only that the transaction was authorized; it doesn't confirm that capture succeeded. To confirm
|
|
20
|
+
# capture, listen for the
|
|
21
|
+
# [`payout_transaction_approvedcaptured`](/developers/webhooks/payout-transaction-approved-captured) webhook
|
|
22
|
+
# event.
|
|
16
23
|
#
|
|
17
24
|
# @param request_options [Hash]
|
|
18
25
|
# @param params [Payabli::MoneyOutTypes::Types::AuthorizePayoutBody]
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
module Payabli
|
|
4
4
|
module Types
|
|
5
5
|
class CustomerSummaryRecord < Internal::Types::Model
|
|
6
|
-
field :numberof_transactions, -> { Integer }, optional: true, nullable: false, api_name: "
|
|
7
|
-
field :recent_transactions, -> { Internal::Types::Array[Payabli::Types::TransactionQueryRecords] }, optional: true, nullable: false, api_name: "
|
|
8
|
-
field :total_amount_transactions, -> { Integer }, optional: true, nullable: false, api_name: "
|
|
9
|
-
field :total_net_amount_transactions, -> { Integer }, optional: true, nullable: false, api_name: "
|
|
6
|
+
field :numberof_transactions, -> { Integer }, optional: true, nullable: false, api_name: "NumberofTransactions"
|
|
7
|
+
field :recent_transactions, -> { Internal::Types::Array[Payabli::Types::TransactionQueryRecords] }, optional: true, nullable: false, api_name: "RecentTransactions"
|
|
8
|
+
field :total_amount_transactions, -> { Integer }, optional: true, nullable: false, api_name: "TotalAmountTransactions"
|
|
9
|
+
field :total_net_amount_transactions, -> { Integer }, optional: true, nullable: false, api_name: "TotalNetAmountTransactions"
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
12
|
end
|
|
@@ -11,7 +11,7 @@ module Payabli
|
|
|
11
11
|
field :fee_amount, -> { Integer }, optional: true, nullable: false, api_name: "FeeAmount"
|
|
12
12
|
field :frequency, -> { String }, optional: true, nullable: false, api_name: "Frequency"
|
|
13
13
|
field :id_sub, -> { Integer }, optional: true, nullable: false, api_name: "IdSub"
|
|
14
|
-
field :invoice_data, -> { Payabli::Types::BillData }, optional: true, nullable: false, api_name: "
|
|
14
|
+
field :invoice_data, -> { Payabli::Types::BillData }, optional: true, nullable: false, api_name: "invoiceData"
|
|
15
15
|
field :last_run, -> { String }, optional: false, nullable: true, api_name: "LastRun"
|
|
16
16
|
field :last_updated, -> { String }, optional: true, nullable: false, api_name: "LastUpdated"
|
|
17
17
|
field :left_cycles, -> { Integer }, optional: true, nullable: false, api_name: "LeftCycles"
|
|
@@ -15,7 +15,7 @@ module Payabli
|
|
|
15
15
|
field :external_processor_information, -> { String }, optional: true, nullable: false, api_name: "ExternalProcessorInformation"
|
|
16
16
|
field :fee_amount, -> { Integer }, optional: true, nullable: false, api_name: "FeeAmount"
|
|
17
17
|
field :gateway_trans_id, -> { String }, optional: true, nullable: false, api_name: "GatewayTransId"
|
|
18
|
-
field :invoice_data, -> { Payabli::Types::BillData }, optional: true, nullable: false, api_name: "
|
|
18
|
+
field :invoice_data, -> { Payabli::Types::BillData }, optional: true, nullable: false, api_name: "invoiceData"
|
|
19
19
|
field :method_, -> { String }, optional: true, nullable: false, api_name: "Method"
|
|
20
20
|
field :net_amount, -> { Integer }, optional: true, nullable: false, api_name: "NetAmount"
|
|
21
21
|
field :operation, -> { String }, optional: true, nullable: false, api_name: "Operation"
|
|
@@ -38,7 +38,7 @@ module Payabli
|
|
|
38
38
|
field :trans_additional_data, -> { Object }, optional: false, nullable: true, api_name: "transAdditionalData"
|
|
39
39
|
field :invoice_data, -> { Payabli::MoneyIn::Types::TransactionDetailInvoiceData }, optional: false, nullable: false, api_name: "invoiceData"
|
|
40
40
|
field :entrypage_id, -> { Integer }, optional: false, nullable: false, api_name: "entrypageId"
|
|
41
|
-
field :external_paypoint_id, -> { String }, optional: false, nullable:
|
|
41
|
+
field :external_paypoint_id, -> { String }, optional: false, nullable: true, api_name: "externalPaypointID"
|
|
42
42
|
field :is_validated_ach, -> { Internal::Types::Boolean }, optional: false, nullable: false, api_name: "isValidatedACH"
|
|
43
43
|
field :transaction_time, -> { String }, optional: false, nullable: false, api_name: "transactionTime"
|
|
44
44
|
field :customer, -> { Payabli::MoneyIn::Types::TransactionDetailCustomer }, optional: false, nullable: false
|
|
@@ -54,7 +54,7 @@ module Payabli
|
|
|
54
54
|
field :risk_action_code, -> { Integer }, optional: true, nullable: false, api_name: "riskActionCode"
|
|
55
55
|
field :device_id, -> { String }, optional: false, nullable: false, api_name: "deviceId"
|
|
56
56
|
field :ach_sec_code, -> { String }, optional: false, nullable: false, api_name: "achSecCode"
|
|
57
|
-
field :ach_holder_type, -> { Payabli::Types::AchHolderType }, optional: false, nullable:
|
|
57
|
+
field :ach_holder_type, -> { Payabli::Types::AchHolderType }, optional: false, nullable: true, api_name: "achHolderType"
|
|
58
58
|
field :ip_address, -> { String }, optional: false, nullable: false, api_name: "ipAddress"
|
|
59
59
|
field :is_same_day_ach, -> { Internal::Types::Boolean }, optional: false, nullable: false, api_name: "isSameDayACH"
|
|
60
60
|
field :wallet_type, -> { String }, optional: false, nullable: true, api_name: "walletType"
|
data/lib/payabli/version.rb
CHANGED
data/lib/payabli.rb
CHANGED
|
@@ -772,6 +772,9 @@ require_relative "payabli/bill/types/bill_out_data_scheduled_options"
|
|
|
772
772
|
require_relative "payabli/bill/types/bill_out_data"
|
|
773
773
|
require_relative "payabli/bill/types/bill_response"
|
|
774
774
|
require_relative "payabli/boarding/types/add_application_request"
|
|
775
|
+
require_relative "payabli/boarding/types/create_application_from_paypoint_request"
|
|
776
|
+
require_relative "payabli/boarding/types/create_application_from_paypoint_response_data"
|
|
777
|
+
require_relative "payabli/boarding/types/create_application_from_paypoint_response"
|
|
775
778
|
require_relative "payabli/charge_backs/types/add_response_response"
|
|
776
779
|
require_relative "payabli/charge_backs/types/chargeback_message"
|
|
777
780
|
require_relative "payabli/charge_backs/types/charge_back_response"
|
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>
|
|
@@ -738,6 +738,63 @@
|
|
|
738
738
|
}
|
|
739
739
|
}
|
|
740
740
|
},
|
|
741
|
+
{
|
|
742
|
+
"id": "e627c75f-541a-4618-8e54-644ebf377026",
|
|
743
|
+
"name": "Create multi-product boarding application - default",
|
|
744
|
+
"request": {
|
|
745
|
+
"urlPathTemplate": "/Boarding/applications",
|
|
746
|
+
"method": "POST"
|
|
747
|
+
},
|
|
748
|
+
"response": {
|
|
749
|
+
"status": 200,
|
|
750
|
+
"body": "{\n \"responseCode\": 1,\n \"pageIdentifier\": null,\n \"roomId\": 66594,\n \"isSuccess\": true,\n \"responseText\": \"Success\",\n \"responseData\": {\n \"appId\": 66594,\n \"boardingLink\": \"https://boarding-sandbox.payabli.com/boarding/externalapp/load/10422?mode=25&email=merchant@example.com&referenceId=YpYNRPDOcGsm\"\n }\n}",
|
|
751
|
+
"headers": {
|
|
752
|
+
"Content-Type": "application/json"
|
|
753
|
+
}
|
|
754
|
+
},
|
|
755
|
+
"uuid": "e627c75f-541a-4618-8e54-644ebf377026",
|
|
756
|
+
"persistent": true,
|
|
757
|
+
"priority": 3,
|
|
758
|
+
"metadata": {
|
|
759
|
+
"mocklab": {
|
|
760
|
+
"created": {
|
|
761
|
+
"at": "2020-01-01T00:00:00.000Z",
|
|
762
|
+
"via": "SYSTEM"
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"id": "d76b1d89-ff45-4c23-b817-3a692dc146a0",
|
|
769
|
+
"name": "Get multi-product boarding applications for a paypoint - default",
|
|
770
|
+
"request": {
|
|
771
|
+
"urlPathTemplate": "/Boarding/applications/{paypointId}",
|
|
772
|
+
"method": "GET",
|
|
773
|
+
"pathParameters": {
|
|
774
|
+
"paypointId": {
|
|
775
|
+
"equalTo": "12345"
|
|
776
|
+
}
|
|
777
|
+
}
|
|
778
|
+
},
|
|
779
|
+
"response": {
|
|
780
|
+
"status": 200,
|
|
781
|
+
"body": "{\n \"Records\": [\n {\n \"idApplication\": 68388,\n \"orgId\": 3125,\n \"dbaName\": \"Meadowbrook Phase II HOA A\",\n \"legalName\": \"Meadowbrook Phase II HOA B\",\n \"ein\": \"601907058\",\n \"boardingStatus\": 7,\n \"boardingSubStatus\": 0,\n \"templateId\": 8233,\n \"boardingLinkId\": 6344,\n \"contactData\": [\n {\n \"contactName\": \"Gary Heaney\",\n \"contactEmail\": \"hello@meadowbrookphaseii.com\",\n \"contactTitle\": \"Human Group Designer\",\n \"contactPhone\": \"7863078875\"\n }\n ],\n \"generalEvents\": [\n {\n \"description\": \"Created\",\n \"eventTime\": \"2026-03-17T18:56:39.8854072Z\"\n },\n {\n \"description\": \"Linked to paypoint 6257\",\n \"eventTime\": \"2026-03-17T18:56:39.885413Z\"\n },\n {\n \"description\": \"Updated Status: 7, 0\",\n \"eventTime\": \"2026-03-18T19:32:39.4012114Z\"\n }\n ]\n }\n ],\n \"Summary\": {\n \"pageIdentifier\": \"null\",\n \"pageSize\": 0,\n \"totalAmount\": 0,\n \"totalNetAmount\": 0,\n \"totalPages\": 0,\n \"totalRecords\": 1\n }\n}",
|
|
782
|
+
"headers": {
|
|
783
|
+
"Content-Type": "application/json"
|
|
784
|
+
}
|
|
785
|
+
},
|
|
786
|
+
"uuid": "d76b1d89-ff45-4c23-b817-3a692dc146a0",
|
|
787
|
+
"persistent": true,
|
|
788
|
+
"priority": 3,
|
|
789
|
+
"metadata": {
|
|
790
|
+
"mocklab": {
|
|
791
|
+
"created": {
|
|
792
|
+
"at": "2020-01-01T00:00:00.000Z",
|
|
793
|
+
"via": "SYSTEM"
|
|
794
|
+
}
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
},
|
|
741
798
|
{
|
|
742
799
|
"id": "9c7fd5b5-7180-46f3-9e7a-389ccaa662f2",
|
|
743
800
|
"name": "Add response to chargeback or return - default",
|
|
@@ -783,7 +840,7 @@
|
|
|
783
840
|
},
|
|
784
841
|
"response": {
|
|
785
842
|
"status": 200,
|
|
786
|
-
"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\": \"Depost 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 \"
|
|
843
|
+
"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\": \"Depost 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\": \"Depost 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 \"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}",
|
|
787
844
|
"headers": {
|
|
788
845
|
"Content-Type": "application/json"
|
|
789
846
|
}
|
|
@@ -1004,7 +1061,7 @@
|
|
|
1004
1061
|
},
|
|
1005
1062
|
"response": {
|
|
1006
1063
|
"status": 200,
|
|
1007
|
-
"body": "{\n \"isSuccess\": true,\n \"responseData\": {\n \"customerId\": 17264,\n \"customerNumber\": \"12356ACB\",\n \"customerUsername\": null,\n \"customerStatus\": 0,\n \"Company\": null,\n \"Firstname\": \"Irene\",\n \"Lastname\": \"Canizales\",\n \"Phone\": null,\n \"Email\": \"irene@canizalesconcrete.com\",\n \"Address\": null,\n \"Address1\": \"123 Bishop's Trail\",\n \"City\": \"Mountain City\",\n \"State\": \"TN\",\n \"Zip\": \"37612\",\n \"Country\": \"US\",\n \"ShippingAddress\": null,\n \"ShippingAddress1\": null,\n \"ShippingCity\": null,\n \"ShippingState\": null,\n \"ShippingZip\": null,\n \"ShippingCountry\": null,\n \"Balance\": 0,\n \"TimeZone\": -5,\n \"MFA\": false,\n \"MFAMode\": 0,\n \"snProvider\": null,\n \"snIdentifier\": null,\n \"snData\": null,\n \"LastUpdated\": \"2024-03-13T12:49:56Z\",\n \"Created\": \"2024-03-13T12:49:56Z\",\n \"AdditionalFields\": {\n \"key\": \"value\"\n },\n \"IdentifierFields\": [\n \"email\"\n ],\n \"Subscriptions\": null,\n \"StoredMethods\": null,\n \"customerSummary\": {\n \"
|
|
1064
|
+
"body": "{\n \"isSuccess\": true,\n \"responseData\": {\n \"customerId\": 17264,\n \"customerNumber\": \"12356ACB\",\n \"customerUsername\": null,\n \"customerStatus\": 0,\n \"Company\": null,\n \"Firstname\": \"Irene\",\n \"Lastname\": \"Canizales\",\n \"Phone\": null,\n \"Email\": \"irene@canizalesconcrete.com\",\n \"Address\": null,\n \"Address1\": \"123 Bishop's Trail\",\n \"City\": \"Mountain City\",\n \"State\": \"TN\",\n \"Zip\": \"37612\",\n \"Country\": \"US\",\n \"ShippingAddress\": null,\n \"ShippingAddress1\": null,\n \"ShippingCity\": null,\n \"ShippingState\": null,\n \"ShippingZip\": null,\n \"ShippingCountry\": null,\n \"Balance\": 0,\n \"TimeZone\": -5,\n \"MFA\": false,\n \"MFAMode\": 0,\n \"snProvider\": null,\n \"snIdentifier\": null,\n \"snData\": null,\n \"LastUpdated\": \"2024-03-13T12:49:56Z\",\n \"Created\": \"2024-03-13T12:49:56Z\",\n \"AdditionalFields\": {\n \"key\": \"value\"\n },\n \"IdentifierFields\": [\n \"email\"\n ],\n \"Subscriptions\": null,\n \"StoredMethods\": null,\n \"customerSummary\": {\n \"NumberofTransactions\": 30,\n \"RecentTransactions\": [\n {\n \"EntrypageId\": 0,\n \"FeeAmount\": 1,\n \"PayorId\": 1551,\n \"PaypointId\": 226,\n \"SettlementStatus\": 2,\n \"TotalAmount\": 30.22,\n \"TransStatus\": 1\n }\n ],\n \"TotalAmountTransactions\": 1500,\n \"TotalNetAmountTransactions\": 1500\n },\n \"PaypointLegalname\": \"Gruzya Adventure Outfitters, LLC\",\n \"PaypointDbaname\": \"Gruzya Adventure Outfitters\",\n \"ParentOrgName\": \"The Pilgrim Planner\",\n \"ParentOrgId\": 123,\n \"PaypointEntryname\": \"41035afaa7\",\n \"pageidentifier\": \"null\",\n \"externalPaypointID\": null,\n \"customerConsent\": null\n },\n \"responseText\": \"Success\"\n}",
|
|
1008
1065
|
"headers": {
|
|
1009
1066
|
"Content-Type": "application/json"
|
|
1010
1067
|
}
|
|
@@ -1066,7 +1123,7 @@
|
|
|
1066
1123
|
},
|
|
1067
1124
|
"response": {
|
|
1068
1125
|
"status": 200,
|
|
1069
|
-
"body": "{\n \"customerId\": 4440,\n \"customerNumber\": \"3456-7645A\",\n \"customerUsername\": \"myusername\",\n \"customerStatus\": 1,\n \"Company\": \"AA LLC\",\n \"Firstname\": \"John\",\n \"Lastname\": \"Smith\",\n \"Phone\": \"1234567890\",\n \"Email\": \"example@email.com\",\n \"Address\": \"3245 Main St\",\n \"Address1\": \"STE 900\",\n \"City\": \"Miami\",\n \"State\": \"FL\",\n \"Zip\": \"77777\",\n \"Country\": \"US\",\n \"ShippingAddress\": \"123 Walnut St\",\n \"ShippingAddress1\": \"STE 900\",\n \"ShippingCity\": \"Johnson City\",\n \"ShippingState\": \"TN\",\n \"ShippingZip\": \"37619\",\n \"ShippingCountry\": \"US\",\n \"Balance\": 1.1,\n \"TimeZone\": -5,\n \"MFA\": false,\n \"MFAMode\": 0,\n \"snProvider\": \"facebook\",\n \"snIdentifier\": \"6677fgttyudd999\",\n \"snData\": \"\",\n \"LastUpdated\": \"2021-06-16T05:00:00Z\",\n \"Created\": \"2021-06-10T05:00:00Z\",\n \"AdditionalFields\": {\n \"property1\": \"string\",\n \"property2\": \"string\"\n },\n \"IdentifierFields\": [\n \"email\"\n ],\n \"Subscriptions\": [\n {\n \"CreatedAt\": \"2022-07-01T15:00:01Z\",\n \"EndDate\": \"2025-10-19T00:00:00Z\",\n \"EntrypageId\": 0,\n \"ExternalPaypointID\": \"Paypoint-100\",\n \"FeeAmount\": 3,\n \"Frequency\": \"monthly\",\n \"IdSub\": 396,\n \"LastRun\": \"2025-10-19T00:00:00Z\",\n \"LastUpdated\": \"2022-07-01T15:00:01Z\",\n \"LeftCycles\": 15,\n \"Method\": \"card\",\n \"NetAmount\": 3762.87,\n \"NextDate\": \"2025-10-19T00:00:00Z\",\n \"ParentOrgName\": \"PropertyManager Pro\",\n \"PaymentData\": {\n \"paymentDetails\": {\n \"totalAmount\": 100\n }\n },\n \"PaypointDbaname\": \"Sunshine Gutters\",\n \"PaypointEntryname\": \"d193cf9a46\",\n \"PaypointId\": 255,\n \"PaypointLegalname\": \"Sunshine Services, LLC\",\n \"PlanId\": 0,\n \"Source\": \"api\",\n \"StartDate\": \"2025-10-19T00:00:00Z\",\n \"SubEvents\": [\n {\n \"description\": \"TransferCreated\",\n \"eventTime\": \"2023-07-05T22:31:06Z\"\n }\n ],\n \"SubStatus\": 1,\n \"TotalAmount\": 103,\n \"TotalCycles\": 24,\n \"UntilCancelled\": true\n }\n ],\n \"StoredMethods\": [\n {\n \"bin\": \"411111\",\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 \"descriptor\": \"visa\",\n \"expDate\": \"1227\",\n \"holderName\": \"Chad Mercia\",\n \"idPmethod\": \"6edcbb56-9c0e-4003-b3d1-99abf149ba0e\",\n \"lastUpdated\": \"2022-07-01T15:00:01Z\",\n \"maskedAccount\": \"4XXXXXXXX1111\",\n \"method\": \"card\"\n }\n ],\n \"customerSummary\": {\n \"
|
|
1126
|
+
"body": "{\n \"customerId\": 4440,\n \"customerNumber\": \"3456-7645A\",\n \"customerUsername\": \"myusername\",\n \"customerStatus\": 1,\n \"Company\": \"AA LLC\",\n \"Firstname\": \"John\",\n \"Lastname\": \"Smith\",\n \"Phone\": \"1234567890\",\n \"Email\": \"example@email.com\",\n \"Address\": \"3245 Main St\",\n \"Address1\": \"STE 900\",\n \"City\": \"Miami\",\n \"State\": \"FL\",\n \"Zip\": \"77777\",\n \"Country\": \"US\",\n \"ShippingAddress\": \"123 Walnut St\",\n \"ShippingAddress1\": \"STE 900\",\n \"ShippingCity\": \"Johnson City\",\n \"ShippingState\": \"TN\",\n \"ShippingZip\": \"37619\",\n \"ShippingCountry\": \"US\",\n \"Balance\": 1.1,\n \"TimeZone\": -5,\n \"MFA\": false,\n \"MFAMode\": 0,\n \"snProvider\": \"facebook\",\n \"snIdentifier\": \"6677fgttyudd999\",\n \"snData\": \"\",\n \"LastUpdated\": \"2021-06-16T05:00:00Z\",\n \"Created\": \"2021-06-10T05:00:00Z\",\n \"AdditionalFields\": {\n \"property1\": \"string\",\n \"property2\": \"string\"\n },\n \"IdentifierFields\": [\n \"email\"\n ],\n \"Subscriptions\": [\n {\n \"CreatedAt\": \"2022-07-01T15:00:01Z\",\n \"EndDate\": \"2025-10-19T00:00:00Z\",\n \"EntrypageId\": 0,\n \"ExternalPaypointID\": \"Paypoint-100\",\n \"FeeAmount\": 3,\n \"Frequency\": \"monthly\",\n \"IdSub\": 396,\n \"LastRun\": \"2025-10-19T00:00:00Z\",\n \"LastUpdated\": \"2022-07-01T15:00:01Z\",\n \"LeftCycles\": 15,\n \"Method\": \"card\",\n \"NetAmount\": 3762.87,\n \"NextDate\": \"2025-10-19T00:00:00Z\",\n \"ParentOrgName\": \"PropertyManager Pro\",\n \"PaymentData\": {\n \"paymentDetails\": {\n \"totalAmount\": 100\n }\n },\n \"PaypointDbaname\": \"Sunshine Gutters\",\n \"PaypointEntryname\": \"d193cf9a46\",\n \"PaypointId\": 255,\n \"PaypointLegalname\": \"Sunshine Services, LLC\",\n \"PlanId\": 0,\n \"Source\": \"api\",\n \"StartDate\": \"2025-10-19T00:00:00Z\",\n \"SubEvents\": [\n {\n \"description\": \"TransferCreated\",\n \"eventTime\": \"2023-07-05T22:31:06Z\"\n }\n ],\n \"SubStatus\": 1,\n \"TotalAmount\": 103,\n \"TotalCycles\": 24,\n \"UntilCancelled\": true\n }\n ],\n \"StoredMethods\": [\n {\n \"bin\": \"411111\",\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 \"descriptor\": \"visa\",\n \"expDate\": \"1227\",\n \"holderName\": \"Chad Mercia\",\n \"idPmethod\": \"6edcbb56-9c0e-4003-b3d1-99abf149ba0e\",\n \"lastUpdated\": \"2022-07-01T15:00:01Z\",\n \"maskedAccount\": \"4XXXXXXXX1111\",\n \"method\": \"card\"\n }\n ],\n \"customerSummary\": {\n \"NumberofTransactions\": 30,\n \"RecentTransactions\": [\n {\n \"EntrypageId\": 0,\n \"FeeAmount\": 1,\n \"PayorId\": 1551,\n \"PaypointId\": 226,\n \"SettlementStatus\": 2,\n \"TotalAmount\": 30.22,\n \"TransStatus\": 1\n }\n ],\n \"TotalAmountTransactions\": 1500,\n \"TotalNetAmountTransactions\": 1500\n },\n \"PaypointLegalname\": \"Sunshine Services, LLC\",\n \"PaypointDbaname\": \"Sunshine Gutters\",\n \"ParentOrgName\": \"PropertyManager Pro\",\n \"ParentOrgId\": 123,\n \"PaypointEntryname\": \"d193cf9a46\",\n \"pageidentifier\": \"null\",\n \"externalPaypointID\": \"Paypoint-100\",\n \"customerConsent\": {\n \"eCommunication\": {\n \"status\": 1,\n \"updatedAt\": \"2022-07-01T15:00:01Z\"\n },\n \"sms\": {\n \"status\": 1,\n \"updatedAt\": \"2022-07-01T15:00:01Z\"\n }\n }\n}",
|
|
1070
1127
|
"headers": {
|
|
1071
1128
|
"Content-Type": "application/json"
|
|
1072
1129
|
}
|
|
@@ -6107,7 +6164,7 @@
|
|
|
6107
6164
|
},
|
|
6108
6165
|
"response": {
|
|
6109
6166
|
"status": 200,
|
|
6110
|
-
"body": "{\n \"Records\": [\n {\n \"Address\": \"1234 Bayou Road\",\n \"Address1\": \"Suite 2\",\n \"Balance\": 0,\n \"City\": \"Lafayette\",\n \"Company\": \"Boudreaux's Shop\",\n \"Country\": \"US\",\n \"Created\": \"2023-12-20T13:07:48Z\",\n \"customerId\": 2876,\n \"customerNumber\": \"425436530000\",\n \"customerStatus\": 0,\n \"customerSummary\": {\n \"
|
|
6167
|
+
"body": "{\n \"Records\": [\n {\n \"Address\": \"1234 Bayou Road\",\n \"Address1\": \"Suite 2\",\n \"Balance\": 0,\n \"City\": \"Lafayette\",\n \"Company\": \"Boudreaux's Shop\",\n \"Country\": \"US\",\n \"Created\": \"2023-12-20T13:07:48Z\",\n \"customerId\": 2876,\n \"customerNumber\": \"425436530000\",\n \"customerStatus\": 0,\n \"customerSummary\": {\n \"NumberofTransactions\": 30,\n \"TotalAmountTransactions\": 1500,\n \"TotalNetAmountTransactions\": 1500\n },\n \"Email\": \"thibodeaux.hebert@bayoumail.com\",\n \"externalPaypointID\": \"pay-10\",\n \"Firstname\": \"Thibodeaux\",\n \"IdentifierFields\": [\n \"email\"\n ],\n \"Lastname\": \"Hebert\",\n \"LastUpdated\": \"2023-12-20T13:07:48Z\",\n \"MFA\": false,\n \"MFAMode\": 0,\n \"ParentOrgName\": \"SupplyPro\",\n \"PaypointDbaname\": \"Global Factory LLC\",\n \"PaypointEntryname\": \"4872acb376a\",\n \"PaypointLegalname\": \"Global Factory LLC\",\n \"Phone\": \"(504) 823-4566\",\n \"ShippingAddress\": \"1234 Bayou Road\",\n \"ShippingAddress1\": \"Suite 2\",\n \"ShippingCity\": \"Lafayette\",\n \"ShippingCountry\": \"US\",\n \"ShippingState\": \"LA\",\n \"ShippingZip\": \"70501\",\n \"State\": \"LA\",\n \"TimeZone\": 0,\n \"Zip\": \"70501\"\n }\n ],\n \"Summary\": {\n \"pageIdentifier\": \"XXXXXXXXXXXXXX\",\n \"pageSize\": 20,\n \"totalAmount\": 0,\n \"totalNetAmount\": 0,\n \"totalPages\": 26,\n \"totalRecords\": 510\n }\n}",
|
|
6111
6168
|
"headers": {
|
|
6112
6169
|
"Content-Type": "application/json"
|
|
6113
6170
|
}
|
|
@@ -6149,7 +6206,7 @@
|
|
|
6149
6206
|
},
|
|
6150
6207
|
"response": {
|
|
6151
6208
|
"status": 200,
|
|
6152
|
-
"body": "{\n \"Records\": [\n {\n \"Address\": \"1234 Bayou Road\",\n \"Address1\": \"Suite 2\",\n \"Balance\": 0,\n \"City\": \"Lafayette\",\n \"Company\": \"Boudreaux's Shop\",\n \"Country\": \"US\",\n \"Created\": \"2023-12-20T13:07:48Z\",\n \"customerId\": 2876,\n \"customerNumber\": \"425436530000\",\n \"customerStatus\": 0,\n \"customerSummary\": {\n \"
|
|
6209
|
+
"body": "{\n \"Records\": [\n {\n \"Address\": \"1234 Bayou Road\",\n \"Address1\": \"Suite 2\",\n \"Balance\": 0,\n \"City\": \"Lafayette\",\n \"Company\": \"Boudreaux's Shop\",\n \"Country\": \"US\",\n \"Created\": \"2023-12-20T13:07:48Z\",\n \"customerId\": 2876,\n \"customerNumber\": \"425436530000\",\n \"customerStatus\": 0,\n \"customerSummary\": {\n \"NumberofTransactions\": 30,\n \"TotalAmountTransactions\": 1500,\n \"TotalNetAmountTransactions\": 1500\n },\n \"Email\": \"thibodeaux.hebert@bayoumail.com\",\n \"externalPaypointID\": \"pay-10\",\n \"Firstname\": \"Thibodeaux\",\n \"IdentifierFields\": [\n \"email\"\n ],\n \"Lastname\": \"Hebert\",\n \"LastUpdated\": \"2023-12-20T13:07:48Z\",\n \"MFA\": false,\n \"MFAMode\": 0,\n \"ParentOrgName\": \"SupplyPro\",\n \"PaypointDbaname\": \"Global Factory LLC\",\n \"PaypointEntryname\": \"4872acb376a\",\n \"PaypointLegalname\": \"Global Factory LLC\",\n \"Phone\": \"(504) 823-4566\",\n \"ShippingAddress\": \"1234 Bayou Road\",\n \"ShippingAddress1\": \"Suite 2\",\n \"ShippingCity\": \"Lafayette\",\n \"ShippingCountry\": \"US\",\n \"ShippingState\": \"LA\",\n \"ShippingZip\": \"70501\",\n \"State\": \"LA\",\n \"TimeZone\": 0,\n \"Zip\": \"70501\"\n }\n ],\n \"Summary\": {\n \"pageIdentifier\": \"XXXXXXXXXXXXXX\",\n \"pageSize\": 20,\n \"totalAmount\": 0,\n \"totalNetAmount\": 0,\n \"totalPages\": 26,\n \"totalRecords\": 510\n }\n}",
|
|
6153
6210
|
"headers": {
|
|
6154
6211
|
"Content-Type": "application/json"
|
|
6155
6212
|
}
|
|
@@ -6695,7 +6752,7 @@
|
|
|
6695
6752
|
},
|
|
6696
6753
|
"response": {
|
|
6697
6754
|
"status": 200,
|
|
6698
|
-
"body": "{\n \"Records\": [\n {\n \"CreatedAt\": \"2023-12-14T08:51:10Z\",\n \"Customer\": {\n \"AdditionalData\": null,\n \"BillingAddress1\": \"68 Golden Drive\",\n \"BillingAddress2\": \"\",\n \"BillingCity\": \"Johnson City\",\n \"BillingCountry\": \"US\",\n \"BillingEmail\": \"company@payabli.com\",\n \"BillingPhone\": \"\",\n \"BillingState\": \"TN\",\n \"BillingZip\": \"37612\",\n \"CompanyName\": \"Sunshine LLC\",\n \"customerId\": 1323,\n \"CustomerNumber\": \"1234\",\n \"customerStatus\": 1,\n \"FirstName\": \"Lisandra\",\n \"Identifiers\": [\n \"\\\\\\\"firstname\\\\\\\"\",\n \"\\\\\\\"lastname\\\\\\\"\",\n \"\\\\\\\"email\\\\\\\"\"\n ],\n \"LastName\": \"Smitch\",\n \"ShippingAddress1\": \"68 Golden Drive\",\n \"ShippingCity\": \"Johnson City\",\n \"ShippingCountry\": \"US\",\n \"ShippingState\": \"TN\",\n \"ShippingZip\": \"37612\"\n },\n \"EndDate\": \"2026-03-20T00:00:00Z\",\n \"EntrypageId\": 0,\n \"ExternalPaypointID\": \"f743aed24a-10\",\n \"FeeAmount\": 0,\n \"Frequency\": \"monthly\",\n \"IdSub\": 580,\n \"
|
|
6755
|
+
"body": "{\n \"Records\": [\n {\n \"CreatedAt\": \"2023-12-14T08:51:10Z\",\n \"Customer\": {\n \"AdditionalData\": null,\n \"BillingAddress1\": \"68 Golden Drive\",\n \"BillingAddress2\": \"\",\n \"BillingCity\": \"Johnson City\",\n \"BillingCountry\": \"US\",\n \"BillingEmail\": \"company@payabli.com\",\n \"BillingPhone\": \"\",\n \"BillingState\": \"TN\",\n \"BillingZip\": \"37612\",\n \"CompanyName\": \"Sunshine LLC\",\n \"customerId\": 1323,\n \"CustomerNumber\": \"1234\",\n \"customerStatus\": 1,\n \"FirstName\": \"Lisandra\",\n \"Identifiers\": [\n \"\\\\\\\"firstname\\\\\\\"\",\n \"\\\\\\\"lastname\\\\\\\"\",\n \"\\\\\\\"email\\\\\\\"\"\n ],\n \"LastName\": \"Smitch\",\n \"ShippingAddress1\": \"68 Golden Drive\",\n \"ShippingCity\": \"Johnson City\",\n \"ShippingCountry\": \"US\",\n \"ShippingState\": \"TN\",\n \"ShippingZip\": \"37612\"\n },\n \"EndDate\": \"2026-03-20T00:00:00Z\",\n \"EntrypageId\": 0,\n \"ExternalPaypointID\": \"f743aed24a-10\",\n \"FeeAmount\": 0,\n \"Frequency\": \"monthly\",\n \"IdSub\": 580,\n \"invoiceData\": {\n \"AdditionalData\": null,\n \"frequency\": \"onetime\",\n \"invoiceAmount\": 100,\n \"invoiceNumber\": \"QA-1702561870\",\n \"invoiceStatus\": 1,\n \"invoiceType\": 1,\n \"items\": [\n {\n \"itemCost\": 10,\n \"itemDescription\": \"service\",\n \"itemMode\": 1,\n \"itemProductName\": \"Mat replacement\",\n \"itemQty\": 5,\n \"itemTotalAmount\": 50\n },\n {\n \"itemCost\": 5,\n \"itemDescription\": \"service\",\n \"itemMode\": 1,\n \"itemProductName\": \"Mat clean\",\n \"itemQty\": 10,\n \"itemTotalAmount\": 50\n }\n ]\n },\n \"LastRun\": \"2024-01-02T14:32:11Z\",\n \"LastUpdated\": \"2023-12-14T08:51:10Z\",\n \"LeftCycles\": 20,\n \"Method\": \"card\",\n \"NetAmount\": 10,\n \"NextDate\": \"2024-07-20T00:00:00Z\",\n \"ParentOrgName\": \"FitnessManager\",\n \"PaymentData\": {\n \"AccountExp\": \"0924\",\n \"AccountType\": \"unknown\",\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\": \"Mr. Michael Abernathy\",\n \"Initiator\": \"payor\",\n \"MaskedAccount\": \"2222 4XXXXXX0010\",\n \"paymentDetails\": {\n \"currency\": \"USD\",\n \"serviceFee\": 0,\n \"totalAmount\": 100\n },\n \"Sequence\": \"subsequent\",\n \"StoredMethodUsageType\": \"subscription\"\n },\n \"PaypointDbaname\": \"Athlete Factory LLC\",\n \"PaypointEntryname\": \"473ac58b0\",\n \"PaypointId\": 10,\n \"PaypointLegalname\": \"Athlete Factory LLC\",\n \"PlanId\": 1,\n \"StartDate\": \"2024-07-20T00:00:00Z\",\n \"SubEvents\": [\n {\n \"description\": \"created\",\n \"eventTime\": \"2023-12-14T13:51:10Z\",\n \"refData\": \"00-3470dfe2658b492811630255602f3fb5-d06fe0f72110000-00\"\n },\n {\n \"description\": \"updated\",\n \"eventTime\": \"2023-12-15T10:30:00Z\",\n \"refData\": \"01-1234abcde6789fghij4567klmnopqr89-abcdefghi12345678-01\",\n \"source\": \"web app\"\n }\n ],\n \"SubStatus\": 1,\n \"TotalAmount\": 100,\n \"TotalCycles\": 20,\n \"UntilCancelled\": false\n }\n ],\n \"Summary\": {\n \"pageIdentifier\": \"XXXXXXXXXXXXXXXXXXX\",\n \"pageSize\": 20,\n \"totalAmount\": 150.22,\n \"totalNetAmount\": 150.22,\n \"totalPages\": 1,\n \"totalRecords\": 2\n }\n}",
|
|
6699
6756
|
"headers": {
|
|
6700
6757
|
"Content-Type": "application/json"
|
|
6701
6758
|
}
|
|
@@ -6737,7 +6794,7 @@
|
|
|
6737
6794
|
},
|
|
6738
6795
|
"response": {
|
|
6739
6796
|
"status": 200,
|
|
6740
|
-
"body": "{\n \"Records\": [\n {\n \"CreatedAt\": \"2023-12-14T08:51:10Z\",\n \"Customer\": {\n \"AdditionalData\": null,\n \"BillingAddress1\": \"68 Golden Drive\",\n \"BillingAddress2\": \"\",\n \"BillingCity\": \"Johnson City\",\n \"BillingCountry\": \"US\",\n \"BillingEmail\": \"company@payabli.com\",\n \"BillingPhone\": \"\",\n \"BillingState\": \"TN\",\n \"BillingZip\": \"37612\",\n \"CompanyName\": \"Sunshine LLC\",\n \"customerId\": 1323,\n \"CustomerNumber\": \"1234\",\n \"customerStatus\": 1,\n \"FirstName\": \"Lisandra\",\n \"Identifiers\": [\n \"\\\\\\\"firstname\\\\\\\"\",\n \"\\\\\\\"lastname\\\\\\\"\",\n \"\\\\\\\"email\\\\\\\"\"\n ],\n \"LastName\": \"Smitch\",\n \"ShippingAddress1\": \"68 Golden Drive\",\n \"ShippingCity\": \"Johnson City\",\n \"ShippingCountry\": \"US\",\n \"ShippingState\": \"TN\",\n \"ShippingZip\": \"37612\"\n },\n \"EndDate\": \"2026-03-20T00:00:00Z\",\n \"EntrypageId\": 0,\n \"ExternalPaypointID\": \"f743aed24a-10\",\n \"FeeAmount\": 0,\n \"Frequency\": \"monthly\",\n \"IdSub\": 580,\n \"
|
|
6797
|
+
"body": "{\n \"Records\": [\n {\n \"CreatedAt\": \"2023-12-14T08:51:10Z\",\n \"Customer\": {\n \"AdditionalData\": null,\n \"BillingAddress1\": \"68 Golden Drive\",\n \"BillingAddress2\": \"\",\n \"BillingCity\": \"Johnson City\",\n \"BillingCountry\": \"US\",\n \"BillingEmail\": \"company@payabli.com\",\n \"BillingPhone\": \"\",\n \"BillingState\": \"TN\",\n \"BillingZip\": \"37612\",\n \"CompanyName\": \"Sunshine LLC\",\n \"customerId\": 1323,\n \"CustomerNumber\": \"1234\",\n \"customerStatus\": 1,\n \"FirstName\": \"Lisandra\",\n \"Identifiers\": [\n \"\\\\\\\"firstname\\\\\\\"\",\n \"\\\\\\\"lastname\\\\\\\"\",\n \"\\\\\\\"email\\\\\\\"\"\n ],\n \"LastName\": \"Smitch\",\n \"ShippingAddress1\": \"68 Golden Drive\",\n \"ShippingCity\": \"Johnson City\",\n \"ShippingCountry\": \"US\",\n \"ShippingState\": \"TN\",\n \"ShippingZip\": \"37612\"\n },\n \"EndDate\": \"2026-03-20T00:00:00Z\",\n \"EntrypageId\": 0,\n \"ExternalPaypointID\": \"f743aed24a-10\",\n \"FeeAmount\": 0,\n \"Frequency\": \"monthly\",\n \"IdSub\": 580,\n \"invoiceData\": {\n \"AdditionalData\": null,\n \"frequency\": \"onetime\",\n \"invoiceAmount\": 100,\n \"invoiceNumber\": \"QA-1702561870\",\n \"invoiceStatus\": 1,\n \"invoiceType\": 1,\n \"items\": [\n {\n \"itemCost\": 10,\n \"itemDescription\": \"service\",\n \"itemMode\": 1,\n \"itemProductName\": \"Mat replacement\",\n \"itemQty\": 5,\n \"itemTotalAmount\": 50\n },\n {\n \"itemCost\": 5,\n \"itemDescription\": \"service\",\n \"itemMode\": 1,\n \"itemProductName\": \"Mat clean\",\n \"itemQty\": 10,\n \"itemTotalAmount\": 50\n }\n ]\n },\n \"LastRun\": \"2024-01-02T14:32:11Z\",\n \"LastUpdated\": \"2023-12-14T08:51:10Z\",\n \"LeftCycles\": 20,\n \"Method\": \"card\",\n \"NetAmount\": 10,\n \"NextDate\": \"2024-07-20T00:00:00Z\",\n \"ParentOrgName\": \"FitnessManager\",\n \"PaymentData\": {\n \"AccountExp\": \"0924\",\n \"AccountType\": \"unknow\",\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\": \"Mr. Michael Abernathy\",\n \"Initiator\": \"payor\",\n \"MaskedAccount\": \"2222 4XXXXXX0010\",\n \"paymentDetails\": {\n \"currency\": \"USD\",\n \"serviceFee\": 0,\n \"totalAmount\": 100\n },\n \"Sequence\": \"subsequent\",\n \"StoredMethodUsageType\": \"subscription\"\n },\n \"PaypointDbaname\": \"Athlete Factory LLC\",\n \"PaypointEntryname\": \"473ac58b0\",\n \"PaypointId\": 10,\n \"PaypointLegalname\": \"Athlete Factory LLC\",\n \"PlanId\": 1,\n \"StartDate\": \"2024-07-20T00:00:00Z\",\n \"SubEvents\": [\n {\n \"description\": \"created\",\n \"eventTime\": \"2023-12-14T13:51:10Z\",\n \"refData\": \"00-3470dfe2658b492811630255602f3fb5-d06fe0f72110000-00\"\n },\n {\n \"description\": \"updated\",\n \"eventTime\": \"2023-12-15T10:30:00Z\",\n \"refData\": \"01-1234abcde6789fghij4567klmnopqr89-abcdefghi12345678-01\",\n \"source\": \"web app\"\n }\n ],\n \"SubStatus\": 1,\n \"TotalAmount\": 100,\n \"TotalCycles\": 20,\n \"UntilCancelled\": false\n }\n ],\n \"Summary\": {\n \"pageIdentifier\": \"XXXXXXXXXXXXXXXXXXX\",\n \"pageSize\": 20,\n \"totalAmount\": 150.22,\n \"totalNetAmount\": 150.22,\n \"totalPages\": 1,\n \"totalRecords\": 2\n }\n}",
|
|
6741
6798
|
"headers": {
|
|
6742
6799
|
"Content-Type": "application/json"
|
|
6743
6800
|
}
|
|
@@ -6863,7 +6920,7 @@
|
|
|
6863
6920
|
},
|
|
6864
6921
|
"response": {
|
|
6865
6922
|
"status": 200,
|
|
6866
|
-
"body": "{\n \"Records\": [\n {\n \"BatchAmount\": 30.22,\n \"BatchNumber\": \"1234567\",\n \"CfeeTransactions\": [\n {\n \"cFeeTransid\": \"string\",\n \"feeAmount\": 0,\n \"operation\": \"string\",\n \"refundId\": 0,\n \"settlementStatus\": 0,\n \"transactionTime\": \"2019-08-24T14:15:22Z\",\n \"transStatus\": 0\n }\n ],\n \"ConnectorName\": \"gp\",\n \"Customer\": {\n \"AdditionalData\": null,\n \"BillingAddress1\": \"1111 street\",\n \"BillingAddress2\": \"string\",\n \"BillingCity\": \"myCity\",\n \"BillingCountry\": \"US\",\n \"BillingEmail\": \"customer@mail.com\",\n \"BillingPhone\": \"1234567890\",\n \"BillingState\": \"CA\",\n \"BillingZip\": \"45567\",\n \"CompanyName\": \"Sunshine LLC\",\n \"customerId\": 34,\n \"CustomerNumber\": \"3456-7645A\",\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"ShippingAddress1\": \"string\",\n \"ShippingAddress2\": \"string\",\n \"ShippingCity\": \"string\",\n \"ShippingCountry\": \"string\",\n \"ShippingState\": \"string\",\n \"ShippingZip\": \"string\"\n },\n \"DeviceId\": \"6c361c7d-674c-44cc-b790-382b75d1xxx\",\n \"EntrypageId\": 0,\n \"ExternalProcessorInformation\": \" \",\n \"FeeAmount\": 10.25,\n \"GatewayTransId\": \"string\",\n \"
|
|
6923
|
+
"body": "{\n \"Records\": [\n {\n \"BatchAmount\": 30.22,\n \"BatchNumber\": \"1234567\",\n \"CfeeTransactions\": [\n {\n \"cFeeTransid\": \"string\",\n \"feeAmount\": 0,\n \"operation\": \"string\",\n \"refundId\": 0,\n \"settlementStatus\": 0,\n \"transactionTime\": \"2019-08-24T14:15:22Z\",\n \"transStatus\": 0\n }\n ],\n \"ConnectorName\": \"gp\",\n \"Customer\": {\n \"AdditionalData\": null,\n \"BillingAddress1\": \"1111 street\",\n \"BillingAddress2\": \"string\",\n \"BillingCity\": \"myCity\",\n \"BillingCountry\": \"US\",\n \"BillingEmail\": \"customer@mail.com\",\n \"BillingPhone\": \"1234567890\",\n \"BillingState\": \"CA\",\n \"BillingZip\": \"45567\",\n \"CompanyName\": \"Sunshine LLC\",\n \"customerId\": 34,\n \"CustomerNumber\": \"3456-7645A\",\n \"FirstName\": \"John\",\n \"LastName\": \"Doe\",\n \"ShippingAddress1\": \"string\",\n \"ShippingAddress2\": \"string\",\n \"ShippingCity\": \"string\",\n \"ShippingCountry\": \"string\",\n \"ShippingState\": \"string\",\n \"ShippingZip\": \"string\"\n },\n \"DeviceId\": \"6c361c7d-674c-44cc-b790-382b75d1xxx\",\n \"EntrypageId\": 0,\n \"ExternalProcessorInformation\": \" \",\n \"FeeAmount\": 10.25,\n \"GatewayTransId\": \"string\",\n \"invoiceData\": {\n \"attachments\": [\n {\n \"fContent\": \"TXkgdGVzdCBmaWxlHJ==...\",\n \"filename\": \"my-doc.pdf\",\n \"ftype\": \"pdf\",\n \"furl\": \"https://mysite.com/my-doc.pdf\"\n }\n ],\n \"company\": \"string\",\n \"discount\": 0,\n \"dutyAmount\": 0,\n \"firstName\": \"string\",\n \"freightAmount\": 10,\n \"frequency\": \"onetime\",\n \"invoiceAmount\": 105,\n \"invoiceDate\": \"2026-01-01\",\n \"invoiceDueDate\": \"2026-01-15\",\n \"invoiceEndDate\": \"2026-01-15\",\n \"invoiceNumber\": \"INV-2345\",\n \"invoiceStatus\": 0,\n \"invoiceType\": 0,\n \"items\": [\n {\n \"itemCategories\": [\n \"string\"\n ],\n \"itemCommodityCode\": \"string\",\n \"itemCost\": 1,\n \"itemDescription\": \"string\",\n \"itemMode\": 0,\n \"itemProductCode\": \"string\",\n \"itemProductName\": \"product 01\",\n \"itemQty\": 1,\n \"itemTaxAmount\": 0,\n \"itemTaxRate\": 0,\n \"itemTotalAmount\": 0,\n \"itemUnitOfMeasure\": \"U\"\n }\n ],\n \"lastName\": \"string\",\n \"notes\": \"string\",\n \"paymentTerms\": \"PIA\",\n \"purchaseOrder\": \"string\",\n \"shippingAddress1\": \"string\",\n \"shippingAddress2\": \"string\",\n \"shippingCity\": \"string\",\n \"shippingCountry\": \"string\",\n \"shippingEmail\": \"string\",\n \"shippingFromZip\": \"string\",\n \"shippingPhone\": \"string\",\n \"shippingState\": \"string\",\n \"shippingZip\": \"string\",\n \"summaryCommodityCode\": \"string\",\n \"tax\": 2.05,\n \"termsConditions\": \"string\"\n },\n \"Method\": \"card\",\n \"NetAmount\": 100,\n \"Operation\": \"Sale\",\n \"OrderId\": \"9876543\",\n \"OrgId\": 2,\n \"ParentOrgName\": \"Payabli\",\n \"PaymentData\": {\n \"AccountExp\": \"0426\",\n \"AccountType\": \"visa\",\n \"binData\": {\n \"binMatchedLength\": \"6\",\n \"binCardBrand\": \"VISA\",\n \"binCardType\": \"DEBIT\",\n \"binCardCategory\": \"CLASSIC\",\n \"binCardIssuer\": \"CONOTOXIA SP. Z O.O\",\n \"binCardIssuerCountry\": \"POLAND\",\n \"binCardIssuerCountryCodeA2\": \"PL\",\n \"binCardIssuerCountryNumber\": \"616\",\n \"binCardIsRegulated\": \"true\",\n \"binCardUseCategory\": \"Consumer\",\n \"binCardIssuerCountryCodeA3\": \"POL\"\n },\n \"HolderName\": \"Billy J Franks\",\n \"Initiator\": \"payor\",\n \"MaskedAccount\": \"411111XXXXXX1111\",\n \"paymentDetails\": {\n \"totalAmount\": 100\n },\n \"Sequence\": \"first\",\n \"StoredId\": \"675b43c1-9867-463c-8dc7-3d6ddb68554b-12812\",\n \"StoredMethodUsageType\": \"unscheduled\"\n },\n \"PaymentTransId\": \"2345667-ddd-fff\",\n \"PayorId\": 55,\n \"PaypointDbaname\": \"Sunshine LLC\",\n \"PaypointEntryname\": \"7acda8200\",\n \"PaypointId\": 2,\n \"PaypointLegalname\": \"Sunshine LLC\",\n \"PendingFeeAmount\": 2,\n \"RefundId\": 0,\n \"ResponseData\": {\n \"authcode\": \"123456\",\n \"avsresponse\": \"N\",\n \"avsresponse_text\": \"No address or ZIP match only\",\n \"cvvresponse\": \"M\",\n \"cvvresponse_text\": \"CVV2/CVC2 match\",\n \"emv_auth_response_data\": null,\n \"orderid\": \"10-bfcd5a17861d4a8690ca53c00000X\",\n \"response\": \"Success\",\n \"response_code\": \"100\",\n \"response_code_text\": \"Transaction was approved.\",\n \"responsetext\": \"SUCCESS\",\n \"resultCode\": \"A0000\",\n \"resultCodeText\": \"Approved\",\n \"transactionid\": \"8082800000\"\n },\n \"ReturnedId\": 0,\n \"ScheduleReference\": 0,\n \"SettlementStatus\": 0,\n \"Source\": \"vterminal\",\n \"splitFundingInstructions\": [\n {}\n ],\n \"TotalAmount\": 110.25,\n \"TransactionEvents\": [\n {}\n ],\n \"TransactionTime\": \"2019-08-24T14:15:22Z\",\n \"TransStatus\": 1\n }\n ],\n \"Summary\": {\n \"pageIdentifier\": \"XXXXXXXXXXXXXXXXXXX\",\n \"pageSize\": 20,\n \"totalAmount\": 177.22,\n \"totalNetAmount\": 177.22,\n \"totalPages\": 1,\n \"totalRecords\": 2\n }\n}",
|
|
6867
6924
|
"headers": {
|
|
6868
6925
|
"Content-Type": "application/json"
|
|
6869
6926
|
}
|
|
@@ -7579,7 +7636,7 @@
|
|
|
7579
7636
|
},
|
|
7580
7637
|
"response": {
|
|
7581
7638
|
"status": 200,
|
|
7582
|
-
"body": "{\n \"CreatedAt\": \"2022-07-01T15:00:01Z\",\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 \"EndDate\": \"2025-10-19T00:00:00Z\",\n \"EntrypageId\": 0,\n \"ExternalPaypointID\": \"Paypoint-100\",\n \"FeeAmount\": 3,\n \"Frequency\": \"monthly\",\n \"IdSub\": 396,\n \"
|
|
7639
|
+
"body": "{\n \"CreatedAt\": \"2022-07-01T15:00:01Z\",\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 \"EndDate\": \"2025-10-19T00:00:00Z\",\n \"EntrypageId\": 0,\n \"ExternalPaypointID\": \"Paypoint-100\",\n \"FeeAmount\": 3,\n \"Frequency\": \"monthly\",\n \"IdSub\": 396,\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 \"LastRun\": \"2025-10-19T00:00:00Z\",\n \"LastUpdated\": \"2022-07-01T15:00:01Z\",\n \"LeftCycles\": 15,\n \"Method\": \"card\",\n \"NetAmount\": 3762.87,\n \"NextDate\": \"2025-10-19T00:00:00Z\",\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\": \"Depost 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 \"PaypointDbaname\": \"Sunshine Gutters\",\n \"PaypointEntryname\": \"d193cf9a46\",\n \"PaypointId\": 255,\n \"PaypointLegalname\": \"Sunshine Services, LLC\",\n \"PlanId\": 0,\n \"Source\": \"api\",\n \"StartDate\": \"2025-10-19T00:00:00Z\",\n \"SubEvents\": [\n {\n \"description\": \"TransferCreated\",\n \"eventTime\": \"2023-07-05T22:31:06Z\",\n \"extraData\": {\n \"key\": \"value\"\n },\n \"refData\": \"refData\",\n \"source\": \"api\"\n }\n ],\n \"SubStatus\": 1,\n \"TotalAmount\": 103,\n \"TotalCycles\": 24,\n \"UntilCancelled\": true\n}",
|
|
7583
7640
|
"headers": {
|
|
7584
7641
|
"Content-Type": "application/json"
|
|
7585
7642
|
}
|
|
@@ -8564,6 +8621,6 @@
|
|
|
8564
8621
|
}
|
|
8565
8622
|
],
|
|
8566
8623
|
"meta": {
|
|
8567
|
-
"total":
|
|
8624
|
+
"total": 248
|
|
8568
8625
|
}
|
|
8569
8626
|
}
|
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.27
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Payabli
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-05-08 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.
|
|
@@ -44,6 +44,9 @@ files:
|
|
|
44
44
|
- lib/payabli/bill/types/set_approved_bill_response.rb
|
|
45
45
|
- lib/payabli/boarding/client.rb
|
|
46
46
|
- lib/payabli/boarding/types/add_application_request.rb
|
|
47
|
+
- lib/payabli/boarding/types/create_application_from_paypoint_request.rb
|
|
48
|
+
- lib/payabli/boarding/types/create_application_from_paypoint_response.rb
|
|
49
|
+
- lib/payabli/boarding/types/create_application_from_paypoint_response_data.rb
|
|
47
50
|
- lib/payabli/boarding/types/get_external_application_request.rb
|
|
48
51
|
- lib/payabli/boarding/types/list_applications_request.rb
|
|
49
52
|
- lib/payabli/boarding/types/list_boarding_links_request.rb
|