data
Braintree Lua API for KosmoKrator Agents
Agent-facing Lua documentation and function reference for the Braintree KosmoKrator integration.Lua Namespace
Agents call this integration through app.integrations.braintree.*.
Use lua_read_doc("integrations.braintree") inside KosmoKrator to discover the same reference at runtime.
Call Lua from the Headless CLI
Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic
Braintree workflow without starting an interactive agent session.
kosmo integrations:lua --eval 'dump(app.integrations.braintree.report_payment_level_fees({}))' --json kosmo integrations:lua --eval 'print(docs.read("braintree"))' --json
kosmo integrations:lua --eval 'print(docs.read("braintree.report_payment_level_fees"))' --json Workflow file
Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.
local braintree = app.integrations.braintree
local result = braintree.report_payment_level_fees({})
dump(result) kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json integrations:lua exposes app.integrations.braintree, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.braintree.default.* or app.integrations.braintree.work.* when you configured named credential accounts.
MCP-only Lua
If the script only needs configured MCP servers and does not need Braintree, use the narrower mcp:lua command.
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json Agent-Facing Lua Docs
This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.
Braintree Lua Tools
Namespace: braintree
The Braintree integration exposes generated tools from the official Braintree GraphQL schema. Coverage includes root query fields, root mutation fields, and the first-level search and report query collections.
Auth
Configure either public_key and private_key, or an OAuth access_token. Use url = "https://payments.braintree-api.com/graphql" for production.
Selection Sets
Most GraphQL fields return objects, interfaces, unions, payloads, or connections. Pass selection to control the returned fields. When omitted, object results request __typename only.
local merchant = app.integrations.braintree.viewer({
selection = "merchant { id status companyName } user { id email name }"
})
local transactions = app.integrations.braintree.search_transactions({
input = {},
first = 10,
selection = "edges { node { id legacyId status amount { value currencyCode } } } pageInfo { hasNextPage endCursor }"
})
local refund = app.integrations.braintree.refund_transaction({
input = { transactionId = "gid://braintree/Transaction/example", amount = "10.00" },
selection = "refund { id legacyId status amount { value currencyCode } }"
})
Common Tools
| Tool | GraphQL Field | Return |
|---|---|---|
braintree_report_payment_level_fees | query report.paymentLevelFees | PaymentLevelFeeReport |
braintree_report_transaction_level_fees | query report.transactionLevelFees | TransactionLevelFeeReport |
braintree_apple_pay_registered_domains | query root.applePayRegisteredDomains | ApplePayRegisteredDomainsPayload |
braintree_client_configuration | query root.clientConfiguration | ClientConfiguration |
braintree_id_from_legacy_id | query root.idFromLegacyId | ID |
braintree_ids_from_legacy_ids | query root.idsFromLegacyIds | ID |
braintree_in_store_locations | query root.inStoreLocations | InStoreLocationConnection |
braintree_node | query root.node | Node |
braintree_paypal_billing_agreement_details | query root.paypalBillingAgreementDetails | PayPalBillingAgreementDetailsPayload |
braintree_paypal_order_details | query root.paypalOrderDetails | PayPalOrderDetailsPayload |
braintree_ping | query root.ping | String |
braintree_ping_in_store_reader | query root.pingInStoreReader | InStoreReader |
braintree_recurring_billing_subscription_plan_add_ons | query root.recurringBillingSubscriptionPlanAddOns | RecurringBillingSubscriptionPlanAddOnsPayload |
braintree_recurring_billing_subscription_plan_discounts | query root.recurringBillingSubscriptionPlanDiscounts | RecurringBillingSubscriptionPlanDiscountsPayload |
braintree_recurring_billing_subscription_plans | query root.recurringBillingSubscriptionPlans | RecurringBillingSubscriptionPlansPayload |
braintree_viewer | query root.viewer | Viewer |
braintree_search_business_account_creation_requests | query search.businessAccountCreationRequests | BusinessAccountCreationRequestConnection |
braintree_search_customers | query search.customers | CustomerConnection |
braintree_search_disputes | query search.disputes | DisputeConnection |
braintree_search_in_store_locations | query search.inStoreLocations | InStoreLocationSearchConnection |
braintree_search_in_store_readers | query search.inStoreReaders | InStoreReaderConnection |
braintree_search_payments | query search.payments | PaymentConnection |
braintree_search_refunds | query search.refunds | RefundConnection |
braintree_search_roles | query search.roles | RoleSearchConnection |
braintree_search_transactions | query search.transactions | TransactionConnection |
braintree_search_verifications | query search.verifications | VerificationConnection |
braintree_accept_dispute | mutation root.acceptDispute | AcceptDisputePayload |
braintree_authorize_credit_card | mutation root.authorizeCreditCard | TransactionPayload |
braintree_authorize_in_store_credit_card | mutation root.authorizeInStoreCreditCard | TransactionPayload |
braintree_authorize_pay_pal_account | mutation root.authorizePayPalAccount | PayPalTransactionPayload |
braintree_authorize_payment_method | mutation root.authorizePaymentMethod | TransactionPayload |
braintree_authorize_venmo_account | mutation root.authorizeVenmoAccount | TransactionPayload |
braintree_capture_transaction | mutation root.captureTransaction | TransactionPayload |
braintree_charge_credit_card | mutation root.chargeCreditCard | TransactionPayload |
braintree_charge_in_store_credit_card | mutation root.chargeInStoreCreditCard | TransactionPayload |
braintree_charge_pay_pal_account | mutation root.chargePayPalAccount | PayPalTransactionPayload |
braintree_charge_payment_method | mutation root.chargePaymentMethod | TransactionPayload |
braintree_charge_us_bank_account | mutation root.chargeUsBankAccount | TransactionPayload |
braintree_charge_venmo_account | mutation root.chargeVenmoAccount | TransactionPayload |
braintree_confirm_micro_transfer_amounts | mutation root.confirmMicroTransferAmounts | ConfirmMicroTransferAmountsPayload |
braintree_create_apple_pay_web_session | mutation root.createApplePayWebSession | CreateApplePayWebSessionPayload |
braintree_create_billing_agreement_jwt | mutation root.createBillingAgreementJwt | CreateBillingAgreementJwtPayload |
braintree_create_client_token | mutation root.createClientToken | CreateClientTokenPayload |
braintree_create_customer | mutation root.createCustomer | CreateCustomerPayload |
braintree_create_dispute_file_evidence | mutation root.createDisputeFileEvidence | CreateDisputeFileEvidencePayload |
braintree_create_dispute_text_evidence | mutation root.createDisputeTextEvidence | CreateDisputeTextEvidencePayload |
braintree_create_in_store_location | mutation root.createInStoreLocation | CreateInStoreLocationPayload |
braintree_create_local_payment_context | mutation root.createLocalPaymentContext | CreateLocalPaymentContextPayload |
braintree_create_non_instant_local_payment_context | mutation root.createNonInstantLocalPaymentContext | CreateNonInstantLocalPaymentContextPayload |
braintree_create_oauth_client_secret | mutation root.createOAuthClientSecret | CreateOAuthClientSecretPayload |
braintree_create_offline_declined_transaction | mutation root.createOfflineDeclinedTransaction | TransactionPayload |
braintree_create_pay_pal_billing_agreement | mutation root.createPayPalBillingAgreement | CreatePayPalBillingAgreementPayload |
braintree_create_pay_pal_one_time_payment | mutation root.createPayPalOneTimePayment | CreatePayPalOneTimePaymentPayload |
braintree_create_recurring_billing_subscription_plan | mutation root.createRecurringBillingSubscriptionPlan | RecurringBillingSubscriptionPlanPayload |
braintree_create_transaction_package_tracking | mutation root.createTransactionPackageTracking | CreateTransactionPackageTrackingPayload |
braintree_create_transaction_risk_context | mutation root.createTransactionRiskContext | TransactionRiskContextPayload |
braintree_create_universal_access_token | mutation root.createUniversalAccessToken | CreateUniversalAccessTokenPayload |
braintree_create_venmo_payment_context | mutation root.createVenmoPaymentContext | VenmoPaymentContextPayload |
braintree_delete_customer | mutation root.deleteCustomer | DeleteCustomerPayload |
braintree_delete_dispute_evidence | mutation root.deleteDisputeEvidence | DeleteDisputeEvidencePayload |
braintree_delete_in_store_location | mutation root.deleteInStoreLocation | DeleteInStoreLocationPayload |
braintree_delete_oauth_client_secret | mutation root.deleteOAuthClientSecret | DeleteOAuthClientSecretPayload |
braintree_delete_payment_method_from_single_use_token | mutation root.deletePaymentMethodFromSingleUseToken | DeletePaymentMethodFromSingleUseTokenPayload |
braintree_delete_payment_method_from_vault | mutation root.deletePaymentMethodFromVault | DeletePaymentMethodFromVaultPayload |
braintree_disable_oauth_client_secret | mutation root.disableOAuthClientSecret | DisableOAuthClientSecretPayload |
braintree_evaluate_transaction_risk | mutation root.evaluateTransactionRisk | TransactionRiskEvaluatePayload |
braintree_finalize_dispute | mutation root.finalizeDispute | FinalizeDisputePayload |
braintree_generate_edit_funding_instrument_url | mutation root.generateEditFundingInstrumentUrl | GenerateEditFundingInstrumentUrlPayload |
braintree_generate_exchange_rate_quote | mutation root.generateExchangeRateQuote | ExchangeRateQuotePayload |
braintree_pair_in_store_reader | mutation root.pairInStoreReader | InStoreReaderPayload |
braintree_partial_capture_transaction | mutation root.partialCaptureTransaction | PartialCaptureTransactionPayload |
braintree_perform_three_dsecure_lookup | mutation root.performThreeDSecureLookup | PerformThreeDSecureLookupPayload |
braintree_refund_credit_card | mutation root.refundCreditCard | RefundCreditCardPayload |
braintree_refund_in_store_credit_card | mutation root.refundInStoreCreditCard | RefundCreditCardPayload |
braintree_refund_transaction | mutation root.refundTransaction | RefundTransactionPayload |
braintree_refund_us_bank_account | mutation root.refundUsBankAccount | RefundUsBankAccountPayload |
braintree_register_apple_pay_domains | mutation root.registerApplePayDomains | RegisterApplePayDomainsPayload |
braintree_request_amount_prompt_from_in_store_reader | mutation root.requestAmountPromptFromInStoreReader | InStoreContextPayload |
braintree_request_authorize_from_in_store_reader | mutation root.requestAuthorizeFromInStoreReader | InStoreContextPayload |
braintree_request_cancel_from_in_store_reader | mutation root.requestCancelFromInStoreReader | InStoreContextPayload |
The full generated catalog contains all root operation fields and first-level search/report fields from Braintree’s official schema.
Raw agent markdown
# Braintree Lua Tools
Namespace: `braintree`
The Braintree integration exposes generated tools from the official Braintree GraphQL schema. Coverage includes root query fields, root mutation fields, and the first-level `search` and `report` query collections.
## Auth
Configure either `public_key` and `private_key`, or an OAuth `access_token`. Use `url = "https://payments.braintree-api.com/graphql"` for production.
## Selection Sets
Most GraphQL fields return objects, interfaces, unions, payloads, or connections. Pass `selection` to control the returned fields. When omitted, object results request `__typename` only.
```lua
local merchant = app.integrations.braintree.viewer({
selection = "merchant { id status companyName } user { id email name }"
})
local transactions = app.integrations.braintree.search_transactions({
input = {},
first = 10,
selection = "edges { node { id legacyId status amount { value currencyCode } } } pageInfo { hasNextPage endCursor }"
})
local refund = app.integrations.braintree.refund_transaction({
input = { transactionId = "gid://braintree/Transaction/example", amount = "10.00" },
selection = "refund { id legacyId status amount { value currencyCode } }"
})
```
## Common Tools
| Tool | GraphQL Field | Return |
|------|---------------|--------|
| `braintree_report_payment_level_fees` | query `report.paymentLevelFees` | PaymentLevelFeeReport |
| `braintree_report_transaction_level_fees` | query `report.transactionLevelFees` | TransactionLevelFeeReport |
| `braintree_apple_pay_registered_domains` | query `root.applePayRegisteredDomains` | ApplePayRegisteredDomainsPayload |
| `braintree_client_configuration` | query `root.clientConfiguration` | ClientConfiguration |
| `braintree_id_from_legacy_id` | query `root.idFromLegacyId` | ID |
| `braintree_ids_from_legacy_ids` | query `root.idsFromLegacyIds` | ID |
| `braintree_in_store_locations` | query `root.inStoreLocations` | InStoreLocationConnection |
| `braintree_node` | query `root.node` | Node |
| `braintree_paypal_billing_agreement_details` | query `root.paypalBillingAgreementDetails` | PayPalBillingAgreementDetailsPayload |
| `braintree_paypal_order_details` | query `root.paypalOrderDetails` | PayPalOrderDetailsPayload |
| `braintree_ping` | query `root.ping` | String |
| `braintree_ping_in_store_reader` | query `root.pingInStoreReader` | InStoreReader |
| `braintree_recurring_billing_subscription_plan_add_ons` | query `root.recurringBillingSubscriptionPlanAddOns` | RecurringBillingSubscriptionPlanAddOnsPayload |
| `braintree_recurring_billing_subscription_plan_discounts` | query `root.recurringBillingSubscriptionPlanDiscounts` | RecurringBillingSubscriptionPlanDiscountsPayload |
| `braintree_recurring_billing_subscription_plans` | query `root.recurringBillingSubscriptionPlans` | RecurringBillingSubscriptionPlansPayload |
| `braintree_viewer` | query `root.viewer` | Viewer |
| `braintree_search_business_account_creation_requests` | query `search.businessAccountCreationRequests` | BusinessAccountCreationRequestConnection |
| `braintree_search_customers` | query `search.customers` | CustomerConnection |
| `braintree_search_disputes` | query `search.disputes` | DisputeConnection |
| `braintree_search_in_store_locations` | query `search.inStoreLocations` | InStoreLocationSearchConnection |
| `braintree_search_in_store_readers` | query `search.inStoreReaders` | InStoreReaderConnection |
| `braintree_search_payments` | query `search.payments` | PaymentConnection |
| `braintree_search_refunds` | query `search.refunds` | RefundConnection |
| `braintree_search_roles` | query `search.roles` | RoleSearchConnection |
| `braintree_search_transactions` | query `search.transactions` | TransactionConnection |
| `braintree_search_verifications` | query `search.verifications` | VerificationConnection |
| `braintree_accept_dispute` | mutation `root.acceptDispute` | AcceptDisputePayload |
| `braintree_authorize_credit_card` | mutation `root.authorizeCreditCard` | TransactionPayload |
| `braintree_authorize_in_store_credit_card` | mutation `root.authorizeInStoreCreditCard` | TransactionPayload |
| `braintree_authorize_pay_pal_account` | mutation `root.authorizePayPalAccount` | PayPalTransactionPayload |
| `braintree_authorize_payment_method` | mutation `root.authorizePaymentMethod` | TransactionPayload |
| `braintree_authorize_venmo_account` | mutation `root.authorizeVenmoAccount` | TransactionPayload |
| `braintree_capture_transaction` | mutation `root.captureTransaction` | TransactionPayload |
| `braintree_charge_credit_card` | mutation `root.chargeCreditCard` | TransactionPayload |
| `braintree_charge_in_store_credit_card` | mutation `root.chargeInStoreCreditCard` | TransactionPayload |
| `braintree_charge_pay_pal_account` | mutation `root.chargePayPalAccount` | PayPalTransactionPayload |
| `braintree_charge_payment_method` | mutation `root.chargePaymentMethod` | TransactionPayload |
| `braintree_charge_us_bank_account` | mutation `root.chargeUsBankAccount` | TransactionPayload |
| `braintree_charge_venmo_account` | mutation `root.chargeVenmoAccount` | TransactionPayload |
| `braintree_confirm_micro_transfer_amounts` | mutation `root.confirmMicroTransferAmounts` | ConfirmMicroTransferAmountsPayload |
| `braintree_create_apple_pay_web_session` | mutation `root.createApplePayWebSession` | CreateApplePayWebSessionPayload |
| `braintree_create_billing_agreement_jwt` | mutation `root.createBillingAgreementJwt` | CreateBillingAgreementJwtPayload |
| `braintree_create_client_token` | mutation `root.createClientToken` | CreateClientTokenPayload |
| `braintree_create_customer` | mutation `root.createCustomer` | CreateCustomerPayload |
| `braintree_create_dispute_file_evidence` | mutation `root.createDisputeFileEvidence` | CreateDisputeFileEvidencePayload |
| `braintree_create_dispute_text_evidence` | mutation `root.createDisputeTextEvidence` | CreateDisputeTextEvidencePayload |
| `braintree_create_in_store_location` | mutation `root.createInStoreLocation` | CreateInStoreLocationPayload |
| `braintree_create_local_payment_context` | mutation `root.createLocalPaymentContext` | CreateLocalPaymentContextPayload |
| `braintree_create_non_instant_local_payment_context` | mutation `root.createNonInstantLocalPaymentContext` | CreateNonInstantLocalPaymentContextPayload |
| `braintree_create_oauth_client_secret` | mutation `root.createOAuthClientSecret` | CreateOAuthClientSecretPayload |
| `braintree_create_offline_declined_transaction` | mutation `root.createOfflineDeclinedTransaction` | TransactionPayload |
| `braintree_create_pay_pal_billing_agreement` | mutation `root.createPayPalBillingAgreement` | CreatePayPalBillingAgreementPayload |
| `braintree_create_pay_pal_one_time_payment` | mutation `root.createPayPalOneTimePayment` | CreatePayPalOneTimePaymentPayload |
| `braintree_create_recurring_billing_subscription_plan` | mutation `root.createRecurringBillingSubscriptionPlan` | RecurringBillingSubscriptionPlanPayload |
| `braintree_create_transaction_package_tracking` | mutation `root.createTransactionPackageTracking` | CreateTransactionPackageTrackingPayload |
| `braintree_create_transaction_risk_context` | mutation `root.createTransactionRiskContext` | TransactionRiskContextPayload |
| `braintree_create_universal_access_token` | mutation `root.createUniversalAccessToken` | CreateUniversalAccessTokenPayload |
| `braintree_create_venmo_payment_context` | mutation `root.createVenmoPaymentContext` | VenmoPaymentContextPayload |
| `braintree_delete_customer` | mutation `root.deleteCustomer` | DeleteCustomerPayload |
| `braintree_delete_dispute_evidence` | mutation `root.deleteDisputeEvidence` | DeleteDisputeEvidencePayload |
| `braintree_delete_in_store_location` | mutation `root.deleteInStoreLocation` | DeleteInStoreLocationPayload |
| `braintree_delete_oauth_client_secret` | mutation `root.deleteOAuthClientSecret` | DeleteOAuthClientSecretPayload |
| `braintree_delete_payment_method_from_single_use_token` | mutation `root.deletePaymentMethodFromSingleUseToken` | DeletePaymentMethodFromSingleUseTokenPayload |
| `braintree_delete_payment_method_from_vault` | mutation `root.deletePaymentMethodFromVault` | DeletePaymentMethodFromVaultPayload |
| `braintree_disable_oauth_client_secret` | mutation `root.disableOAuthClientSecret` | DisableOAuthClientSecretPayload |
| `braintree_evaluate_transaction_risk` | mutation `root.evaluateTransactionRisk` | TransactionRiskEvaluatePayload |
| `braintree_finalize_dispute` | mutation `root.finalizeDispute` | FinalizeDisputePayload |
| `braintree_generate_edit_funding_instrument_url` | mutation `root.generateEditFundingInstrumentUrl` | GenerateEditFundingInstrumentUrlPayload |
| `braintree_generate_exchange_rate_quote` | mutation `root.generateExchangeRateQuote` | ExchangeRateQuotePayload |
| `braintree_pair_in_store_reader` | mutation `root.pairInStoreReader` | InStoreReaderPayload |
| `braintree_partial_capture_transaction` | mutation `root.partialCaptureTransaction` | PartialCaptureTransactionPayload |
| `braintree_perform_three_dsecure_lookup` | mutation `root.performThreeDSecureLookup` | PerformThreeDSecureLookupPayload |
| `braintree_refund_credit_card` | mutation `root.refundCreditCard` | RefundCreditCardPayload |
| `braintree_refund_in_store_credit_card` | mutation `root.refundInStoreCreditCard` | RefundCreditCardPayload |
| `braintree_refund_transaction` | mutation `root.refundTransaction` | RefundTransactionPayload |
| `braintree_refund_us_bank_account` | mutation `root.refundUsBankAccount` | RefundUsBankAccountPayload |
| `braintree_register_apple_pay_domains` | mutation `root.registerApplePayDomains` | RegisterApplePayDomainsPayload |
| `braintree_request_amount_prompt_from_in_store_reader` | mutation `root.requestAmountPromptFromInStoreReader` | InStoreContextPayload |
| `braintree_request_authorize_from_in_store_reader` | mutation `root.requestAuthorizeFromInStoreReader` | InStoreContextPayload |
| `braintree_request_cancel_from_in_store_reader` | mutation `root.requestCancelFromInStoreReader` | InStoreContextPayload |
The full generated catalog contains all root operation fields and first-level search/report fields from Braintree's official schema. local result = app.integrations.braintree.report_payment_level_fees({})
print(result) Functions
report_payment_level_fees Read
Execute official Braintree GraphQL query field `paymentLevelFees` under `report`.
- Lua path
app.integrations.braintree.report_payment_level_fees- Full name
braintree.braintree_report_payment_level_fees
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
report_transaction_level_fees Read
Execute official Braintree GraphQL query field `transactionLevelFees` under `report`.
- Lua path
app.integrations.braintree.report_transaction_level_fees- Full name
braintree.braintree_report_transaction_level_fees
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
apple_pay_registered_domains Read
Execute official Braintree GraphQL query field `applePayRegisteredDomains`.
- Lua path
app.integrations.braintree.apple_pay_registered_domains- Full name
braintree.braintree_apple_pay_registered_domains
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
client_configuration Read
Execute official Braintree GraphQL query field `clientConfiguration`.
- Lua path
app.integrations.braintree.client_configuration- Full name
braintree.braintree_client_configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
id_from_legacy_id Read
Execute official Braintree GraphQL query field `idFromLegacyId`.
- Lua path
app.integrations.braintree.id_from_legacy_id- Full name
braintree.braintree_id_from_legacy_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ids_from_legacy_ids Read
Execute official Braintree GraphQL query field `idsFromLegacyIds`.
- Lua path
app.integrations.braintree.ids_from_legacy_ids- Full name
braintree.braintree_ids_from_legacy_ids
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
store_locations Read
Execute official Braintree GraphQL query field `inStoreLocations`.
- Lua path
app.integrations.braintree.store_locations- Full name
braintree.braintree_in_store_locations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
node Read
Execute official Braintree GraphQL query field `node`.
- Lua path
app.integrations.braintree.node- Full name
braintree.braintree_node
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
paypal_billing_agreement_details Read
Execute official Braintree GraphQL query field `paypalBillingAgreementDetails`.
- Lua path
app.integrations.braintree.paypal_billing_agreement_details- Full name
braintree.braintree_paypal_billing_agreement_details
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
paypal_order_details Read
Execute official Braintree GraphQL query field `paypalOrderDetails`.
- Lua path
app.integrations.braintree.paypal_order_details- Full name
braintree.braintree_paypal_order_details
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ping Read
Execute official Braintree GraphQL query field `ping`.
- Lua path
app.integrations.braintree.ping- Full name
braintree.braintree_ping
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ping_store_reader Read
Execute official Braintree GraphQL query field `pingInStoreReader`.
- Lua path
app.integrations.braintree.ping_store_reader- Full name
braintree.braintree_ping_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
recurring_billing_subscription_plan_add_ons Read
Execute official Braintree GraphQL query field `recurringBillingSubscriptionPlanAddOns`.
- Lua path
app.integrations.braintree.recurring_billing_subscription_plan_add_ons- Full name
braintree.braintree_recurring_billing_subscription_plan_add_ons
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
recurring_billing_subscription_plan_discounts Read
Execute official Braintree GraphQL query field `recurringBillingSubscriptionPlanDiscounts`.
- Lua path
app.integrations.braintree.recurring_billing_subscription_plan_discounts- Full name
braintree.braintree_recurring_billing_subscription_plan_discounts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
recurring_billing_subscription_plans Read
Execute official Braintree GraphQL query field `recurringBillingSubscriptionPlans`.
- Lua path
app.integrations.braintree.recurring_billing_subscription_plans- Full name
braintree.braintree_recurring_billing_subscription_plans
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
viewer Read
Execute official Braintree GraphQL query field `viewer`.
- Lua path
app.integrations.braintree.viewer- Full name
braintree.braintree_viewer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_business_account_creation_requests Read
Execute official Braintree GraphQL query field `businessAccountCreationRequests` under `search`.
- Lua path
app.integrations.braintree.search_business_account_creation_requests- Full name
braintree.braintree_search_business_account_creation_requests
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_customers Read
Execute official Braintree GraphQL query field `customers` under `search`.
- Lua path
app.integrations.braintree.search_customers- Full name
braintree.braintree_search_customers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_disputes Read
Execute official Braintree GraphQL query field `disputes` under `search`.
- Lua path
app.integrations.braintree.search_disputes- Full name
braintree.braintree_search_disputes
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_store_locations Read
Execute official Braintree GraphQL query field `inStoreLocations` under `search`.
- Lua path
app.integrations.braintree.search_store_locations- Full name
braintree.braintree_search_in_store_locations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_store_readers Read
Execute official Braintree GraphQL query field `inStoreReaders` under `search`.
- Lua path
app.integrations.braintree.search_store_readers- Full name
braintree.braintree_search_in_store_readers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_payments Read
Execute official Braintree GraphQL query field `payments` under `search`.
- Lua path
app.integrations.braintree.search_payments- Full name
braintree.braintree_search_payments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_refunds Read
Execute official Braintree GraphQL query field `refunds` under `search`.
- Lua path
app.integrations.braintree.search_refunds- Full name
braintree.braintree_search_refunds
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_roles Read
Execute official Braintree GraphQL query field `roles` under `search`.
- Lua path
app.integrations.braintree.search_roles- Full name
braintree.braintree_search_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_transactions Read
Execute official Braintree GraphQL query field `transactions` under `search`.
- Lua path
app.integrations.braintree.search_transactions- Full name
braintree.braintree_search_transactions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_verifications Read
Execute official Braintree GraphQL query field `verifications` under `search`.
- Lua path
app.integrations.braintree.search_verifications- Full name
braintree.braintree_search_verifications
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
accept_dispute Write
Execute official Braintree GraphQL mutation field `acceptDispute`.
- Lua path
app.integrations.braintree.accept_dispute- Full name
braintree.braintree_accept_dispute
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
authorize_credit_card Write
Execute official Braintree GraphQL mutation field `authorizeCreditCard`.
- Lua path
app.integrations.braintree.authorize_credit_card- Full name
braintree.braintree_authorize_credit_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
authorize_store_credit_card Write
Execute official Braintree GraphQL mutation field `authorizeInStoreCreditCard`.
- Lua path
app.integrations.braintree.authorize_store_credit_card- Full name
braintree.braintree_authorize_in_store_credit_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
authorize_pay_pal_account Write
Execute official Braintree GraphQL mutation field `authorizePayPalAccount`.
- Lua path
app.integrations.braintree.authorize_pay_pal_account- Full name
braintree.braintree_authorize_pay_pal_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
authorize_payment_method Write
Execute official Braintree GraphQL mutation field `authorizePaymentMethod`.
- Lua path
app.integrations.braintree.authorize_payment_method- Full name
braintree.braintree_authorize_payment_method
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
authorize_venmo_account Write
Execute official Braintree GraphQL mutation field `authorizeVenmoAccount`.
- Lua path
app.integrations.braintree.authorize_venmo_account- Full name
braintree.braintree_authorize_venmo_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
capture_transaction Write
Execute official Braintree GraphQL mutation field `captureTransaction`.
- Lua path
app.integrations.braintree.capture_transaction- Full name
braintree.braintree_capture_transaction
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
charge_credit_card Write
Execute official Braintree GraphQL mutation field `chargeCreditCard`.
- Lua path
app.integrations.braintree.charge_credit_card- Full name
braintree.braintree_charge_credit_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
charge_store_credit_card Write
Execute official Braintree GraphQL mutation field `chargeInStoreCreditCard`.
- Lua path
app.integrations.braintree.charge_store_credit_card- Full name
braintree.braintree_charge_in_store_credit_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
charge_pay_pal_account Write
Execute official Braintree GraphQL mutation field `chargePayPalAccount`.
- Lua path
app.integrations.braintree.charge_pay_pal_account- Full name
braintree.braintree_charge_pay_pal_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
charge_payment_method Write
Execute official Braintree GraphQL mutation field `chargePaymentMethod`.
- Lua path
app.integrations.braintree.charge_payment_method- Full name
braintree.braintree_charge_payment_method
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
charge_us_bank_account Write
Execute official Braintree GraphQL mutation field `chargeUsBankAccount`.
- Lua path
app.integrations.braintree.charge_us_bank_account- Full name
braintree.braintree_charge_us_bank_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
charge_venmo_account Write
Execute official Braintree GraphQL mutation field `chargeVenmoAccount`.
- Lua path
app.integrations.braintree.charge_venmo_account- Full name
braintree.braintree_charge_venmo_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
confirm_micro_transfer_amounts Write
Execute official Braintree GraphQL mutation field `confirmMicroTransferAmounts`.
- Lua path
app.integrations.braintree.confirm_micro_transfer_amounts- Full name
braintree.braintree_confirm_micro_transfer_amounts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_apple_pay_web_session Write
Execute official Braintree GraphQL mutation field `createApplePayWebSession`.
- Lua path
app.integrations.braintree.create_apple_pay_web_session- Full name
braintree.braintree_create_apple_pay_web_session
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_billing_agreement_jwt Write
Execute official Braintree GraphQL mutation field `createBillingAgreementJwt`.
- Lua path
app.integrations.braintree.create_billing_agreement_jwt- Full name
braintree.braintree_create_billing_agreement_jwt
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_client_token Write
Execute official Braintree GraphQL mutation field `createClientToken`.
- Lua path
app.integrations.braintree.create_client_token- Full name
braintree.braintree_create_client_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_customer Write
Execute official Braintree GraphQL mutation field `createCustomer`.
- Lua path
app.integrations.braintree.create_customer- Full name
braintree.braintree_create_customer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_dispute_file_evidence Write
Execute official Braintree GraphQL mutation field `createDisputeFileEvidence`.
- Lua path
app.integrations.braintree.create_dispute_file_evidence- Full name
braintree.braintree_create_dispute_file_evidence
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_dispute_text_evidence Write
Execute official Braintree GraphQL mutation field `createDisputeTextEvidence`.
- Lua path
app.integrations.braintree.create_dispute_text_evidence- Full name
braintree.braintree_create_dispute_text_evidence
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_store_location Write
Execute official Braintree GraphQL mutation field `createInStoreLocation`.
- Lua path
app.integrations.braintree.create_store_location- Full name
braintree.braintree_create_in_store_location
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_local_payment_context Write
Execute official Braintree GraphQL mutation field `createLocalPaymentContext`.
- Lua path
app.integrations.braintree.create_local_payment_context- Full name
braintree.braintree_create_local_payment_context
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_non_instant_local_payment_context Write
Execute official Braintree GraphQL mutation field `createNonInstantLocalPaymentContext`.
- Lua path
app.integrations.braintree.create_non_instant_local_payment_context- Full name
braintree.braintree_create_non_instant_local_payment_context
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_oauth_client_secret Write
Execute official Braintree GraphQL mutation field `createOAuthClientSecret`.
- Lua path
app.integrations.braintree.create_oauth_client_secret- Full name
braintree.braintree_create_oauth_client_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_offline_declined_transaction Write
Execute official Braintree GraphQL mutation field `createOfflineDeclinedTransaction`.
- Lua path
app.integrations.braintree.create_offline_declined_transaction- Full name
braintree.braintree_create_offline_declined_transaction
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_pay_pal_billing_agreement Write
Execute official Braintree GraphQL mutation field `createPayPalBillingAgreement`.
- Lua path
app.integrations.braintree.create_pay_pal_billing_agreement- Full name
braintree.braintree_create_pay_pal_billing_agreement
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_pay_pal_one_time_payment Write
Execute official Braintree GraphQL mutation field `createPayPalOneTimePayment`.
- Lua path
app.integrations.braintree.create_pay_pal_one_time_payment- Full name
braintree.braintree_create_pay_pal_one_time_payment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_recurring_billing_subscription_plan Write
Execute official Braintree GraphQL mutation field `createRecurringBillingSubscriptionPlan`.
- Lua path
app.integrations.braintree.create_recurring_billing_subscription_plan- Full name
braintree.braintree_create_recurring_billing_subscription_plan
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_transaction_package_tracking Write
Execute official Braintree GraphQL mutation field `createTransactionPackageTracking`.
- Lua path
app.integrations.braintree.create_transaction_package_tracking- Full name
braintree.braintree_create_transaction_package_tracking
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_transaction_risk_context Write
Execute official Braintree GraphQL mutation field `createTransactionRiskContext`.
- Lua path
app.integrations.braintree.create_transaction_risk_context- Full name
braintree.braintree_create_transaction_risk_context
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_universal_access_token Write
Execute official Braintree GraphQL mutation field `createUniversalAccessToken`.
- Lua path
app.integrations.braintree.create_universal_access_token- Full name
braintree.braintree_create_universal_access_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_venmo_payment_context Write
Execute official Braintree GraphQL mutation field `createVenmoPaymentContext`.
- Lua path
app.integrations.braintree.create_venmo_payment_context- Full name
braintree.braintree_create_venmo_payment_context
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_customer Write
Execute official Braintree GraphQL mutation field `deleteCustomer`.
- Lua path
app.integrations.braintree.delete_customer- Full name
braintree.braintree_delete_customer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_dispute_evidence Write
Execute official Braintree GraphQL mutation field `deleteDisputeEvidence`.
- Lua path
app.integrations.braintree.delete_dispute_evidence- Full name
braintree.braintree_delete_dispute_evidence
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_store_location Write
Execute official Braintree GraphQL mutation field `deleteInStoreLocation`.
- Lua path
app.integrations.braintree.delete_store_location- Full name
braintree.braintree_delete_in_store_location
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_oauth_client_secret Write
Execute official Braintree GraphQL mutation field `deleteOAuthClientSecret`.
- Lua path
app.integrations.braintree.delete_oauth_client_secret- Full name
braintree.braintree_delete_oauth_client_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_payment_method_from_single_use_token Write
Execute official Braintree GraphQL mutation field `deletePaymentMethodFromSingleUseToken`.
- Lua path
app.integrations.braintree.delete_payment_method_from_single_use_token- Full name
braintree.braintree_delete_payment_method_from_single_use_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_payment_method_from_vault Write
Execute official Braintree GraphQL mutation field `deletePaymentMethodFromVault`.
- Lua path
app.integrations.braintree.delete_payment_method_from_vault- Full name
braintree.braintree_delete_payment_method_from_vault
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_oauth_client_secret Write
Execute official Braintree GraphQL mutation field `disableOAuthClientSecret`.
- Lua path
app.integrations.braintree.disable_oauth_client_secret- Full name
braintree.braintree_disable_oauth_client_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
evaluate_transaction_risk Write
Execute official Braintree GraphQL mutation field `evaluateTransactionRisk`.
- Lua path
app.integrations.braintree.evaluate_transaction_risk- Full name
braintree.braintree_evaluate_transaction_risk
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
finalize_dispute Write
Execute official Braintree GraphQL mutation field `finalizeDispute`.
- Lua path
app.integrations.braintree.finalize_dispute- Full name
braintree.braintree_finalize_dispute
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_edit_funding_instrument_url Write
Execute official Braintree GraphQL mutation field `generateEditFundingInstrumentUrl`.
- Lua path
app.integrations.braintree.generate_edit_funding_instrument_url- Full name
braintree.braintree_generate_edit_funding_instrument_url
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_exchange_rate_quote Write
Execute official Braintree GraphQL mutation field `generateExchangeRateQuote`.
- Lua path
app.integrations.braintree.generate_exchange_rate_quote- Full name
braintree.braintree_generate_exchange_rate_quote
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pair_store_reader Write
Execute official Braintree GraphQL mutation field `pairInStoreReader`.
- Lua path
app.integrations.braintree.pair_store_reader- Full name
braintree.braintree_pair_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
partial_capture_transaction Write
Execute official Braintree GraphQL mutation field `partialCaptureTransaction`.
- Lua path
app.integrations.braintree.partial_capture_transaction- Full name
braintree.braintree_partial_capture_transaction
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
perform_three_dsecure_lookup Write
Execute official Braintree GraphQL mutation field `performThreeDSecureLookup`.
- Lua path
app.integrations.braintree.perform_three_dsecure_lookup- Full name
braintree.braintree_perform_three_dsecure_lookup
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
refund_credit_card Write
Execute official Braintree GraphQL mutation field `refundCreditCard`.
- Lua path
app.integrations.braintree.refund_credit_card- Full name
braintree.braintree_refund_credit_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
refund_store_credit_card Write
Execute official Braintree GraphQL mutation field `refundInStoreCreditCard`.
- Lua path
app.integrations.braintree.refund_store_credit_card- Full name
braintree.braintree_refund_in_store_credit_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
refund_transaction Write
Execute official Braintree GraphQL mutation field `refundTransaction`.
- Lua path
app.integrations.braintree.refund_transaction- Full name
braintree.braintree_refund_transaction
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
refund_us_bank_account Write
Execute official Braintree GraphQL mutation field `refundUsBankAccount`.
- Lua path
app.integrations.braintree.refund_us_bank_account- Full name
braintree.braintree_refund_us_bank_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
register_apple_pay_domains Write
Execute official Braintree GraphQL mutation field `registerApplePayDomains`.
- Lua path
app.integrations.braintree.register_apple_pay_domains- Full name
braintree.braintree_register_apple_pay_domains
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_amount_prompt_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestAmountPromptFromInStoreReader`.
- Lua path
app.integrations.braintree.request_amount_prompt_from_store_reader- Full name
braintree.braintree_request_amount_prompt_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_authorize_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestAuthorizeFromInStoreReader`.
- Lua path
app.integrations.braintree.request_authorize_from_store_reader- Full name
braintree.braintree_request_authorize_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_cancel_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestCancelFromInStoreReader`.
- Lua path
app.integrations.braintree.request_cancel_from_store_reader- Full name
braintree.braintree_request_cancel_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_charge_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestChargeFromInStoreReader`.
- Lua path
app.integrations.braintree.request_charge_from_store_reader- Full name
braintree.braintree_request_charge_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_confirmation_prompt_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestConfirmationPromptFromInStoreReader`.
- Lua path
app.integrations.braintree.request_confirmation_prompt_from_store_reader- Full name
braintree.braintree_request_confirmation_prompt_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_firmware_update_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestFirmwareUpdateFromInStoreReader`.
- Lua path
app.integrations.braintree.request_firmware_update_from_store_reader- Full name
braintree.braintree_request_firmware_update_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_item_display_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestItemDisplayFromInStoreReader`.
- Lua path
app.integrations.braintree.request_item_display_from_store_reader- Full name
braintree.braintree_request_item_display_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_multi_choice_single_select_prompt_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestMultiChoiceSingleSelectPromptFromInStoreReader`.
- Lua path
app.integrations.braintree.request_multi_choice_single_select_prompt_from_store_reader- Full name
braintree.braintree_request_multi_choice_single_select_prompt_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_non_pci_card_data_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestNonPciCardDataFromInStoreReader`.
- Lua path
app.integrations.braintree.request_non_pci_card_data_from_store_reader- Full name
braintree.braintree_request_non_pci_card_data_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_print_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestPrintFromInStoreReader`.
- Lua path
app.integrations.braintree.request_print_from_store_reader- Full name
braintree.braintree_request_print_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_refund_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestRefundFromInStoreReader`.
- Lua path
app.integrations.braintree.request_refund_from_store_reader- Full name
braintree.braintree_request_refund_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_signature_prompt_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestSignaturePromptFromInStoreReader`.
- Lua path
app.integrations.braintree.request_signature_prompt_from_store_reader- Full name
braintree.braintree_request_signature_prompt_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_text_display_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestTextDisplayFromInStoreReader`.
- Lua path
app.integrations.braintree.request_text_display_from_store_reader- Full name
braintree.braintree_request_text_display_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_text_prompt_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestTextPromptFromInStoreReader`.
- Lua path
app.integrations.braintree.request_text_prompt_from_store_reader- Full name
braintree.braintree_request_text_prompt_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_vault_from_store_reader Write
Execute official Braintree GraphQL mutation field `requestVaultFromInStoreReader`.
- Lua path
app.integrations.braintree.request_vault_from_store_reader- Full name
braintree.braintree_request_vault_from_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
reverse_emv_transaction Write
Execute official Braintree GraphQL mutation field `reverseEmvTransaction`.
- Lua path
app.integrations.braintree.reverse_emv_transaction- Full name
braintree.braintree_reverse_emv_transaction
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
reverse_refund Write
Execute official Braintree GraphQL mutation field `reverseRefund`.
- Lua path
app.integrations.braintree.reverse_refund- Full name
braintree.braintree_reverse_refund
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
reverse_transaction Write
Execute official Braintree GraphQL mutation field `reverseTransaction`.
- Lua path
app.integrations.braintree.reverse_transaction- Full name
braintree.braintree_reverse_transaction
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sandbox_settle_transaction Write
Execute official Braintree GraphQL mutation field `sandboxSettleTransaction`.
- Lua path
app.integrations.braintree.sandbox_settle_transaction- Full name
braintree.braintree_sandbox_settle_transaction
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
submit_dispute_feedback Write
Execute official Braintree GraphQL mutation field `submitDisputeFeedback`.
- Lua path
app.integrations.braintree.submit_dispute_feedback- Full name
braintree.braintree_submit_dispute_feedback
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
submit_transaction_feedback Write
Execute official Braintree GraphQL mutation field `submitTransactionFeedback`.
- Lua path
app.integrations.braintree.submit_transaction_feedback- Full name
braintree.braintree_submit_transaction_feedback
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_apple_pay_card Write
Execute official Braintree GraphQL mutation field `tokenizeApplePayCard`.
- Lua path
app.integrations.braintree.tokenize_apple_pay_card- Full name
braintree.braintree_tokenize_apple_pay_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_credit_card Write
Execute official Braintree GraphQL mutation field `tokenizeCreditCard`.
- Lua path
app.integrations.braintree.tokenize_credit_card- Full name
braintree.braintree_tokenize_credit_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_custom_actions_payment_method Write
Execute official Braintree GraphQL mutation field `tokenizeCustomActionsPaymentMethod`.
- Lua path
app.integrations.braintree.tokenize_custom_actions_payment_method- Full name
braintree.braintree_tokenize_custom_actions_payment_method
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_cvv Write
Execute official Braintree GraphQL mutation field `tokenizeCvv`.
- Lua path
app.integrations.braintree.tokenize_cvv- Full name
braintree.braintree_tokenize_cvv
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_emv_card Write
Execute official Braintree GraphQL mutation field `tokenizeEmvCard`.
- Lua path
app.integrations.braintree.tokenize_emv_card- Full name
braintree.braintree_tokenize_emv_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_magstripe_card Write
Execute official Braintree GraphQL mutation field `tokenizeMagstripeCard`.
- Lua path
app.integrations.braintree.tokenize_magstripe_card- Full name
braintree.braintree_tokenize_magstripe_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_network_token Write
Execute official Braintree GraphQL mutation field `tokenizeNetworkToken`.
- Lua path
app.integrations.braintree.tokenize_network_token- Full name
braintree.braintree_tokenize_network_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_pay_pal_billing_agreement Write
Execute official Braintree GraphQL mutation field `tokenizePayPalBillingAgreement`.
- Lua path
app.integrations.braintree.tokenize_pay_pal_billing_agreement- Full name
braintree.braintree_tokenize_pay_pal_billing_agreement
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_pay_pal_one_time_payment Write
Execute official Braintree GraphQL mutation field `tokenizePayPalOneTimePayment`.
- Lua path
app.integrations.braintree.tokenize_pay_pal_one_time_payment- Full name
braintree.braintree_tokenize_pay_pal_one_time_payment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_samsung_pay_card Write
Execute official Braintree GraphQL mutation field `tokenizeSamsungPayCard`.
- Lua path
app.integrations.braintree.tokenize_samsung_pay_card- Full name
braintree.braintree_tokenize_samsung_pay_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_us_bank_account Write
Execute official Braintree GraphQL mutation field `tokenizeUsBankAccount`.
- Lua path
app.integrations.braintree.tokenize_us_bank_account- Full name
braintree.braintree_tokenize_us_bank_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tokenize_us_bank_login Write
Execute official Braintree GraphQL mutation field `tokenizeUsBankLogin`.
- Lua path
app.integrations.braintree.tokenize_us_bank_login- Full name
braintree.braintree_tokenize_us_bank_login
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
unregister_apple_pay_domain Write
Execute official Braintree GraphQL mutation field `unregisterApplePayDomain`.
- Lua path
app.integrations.braintree.unregister_apple_pay_domain- Full name
braintree.braintree_unregister_apple_pay_domain
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_credit_card_billing_address Write
Execute official Braintree GraphQL mutation field `updateCreditCardBillingAddress`.
- Lua path
app.integrations.braintree.update_credit_card_billing_address- Full name
braintree.braintree_update_credit_card_billing_address
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_credit_card_cardholder_name Write
Execute official Braintree GraphQL mutation field `updateCreditCardCardholderName`.
- Lua path
app.integrations.braintree.update_credit_card_cardholder_name- Full name
braintree.braintree_update_credit_card_cardholder_name
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_credit_card_expiration_date Write
Execute official Braintree GraphQL mutation field `updateCreditCardExpirationDate`.
- Lua path
app.integrations.braintree.update_credit_card_expiration_date- Full name
braintree.braintree_update_credit_card_expiration_date
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_custom_fields Write
Execute official Braintree GraphQL mutation field `updateCustomFields`.
- Lua path
app.integrations.braintree.update_custom_fields- Full name
braintree.braintree_update_custom_fields
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_customer Write
Execute official Braintree GraphQL mutation field `updateCustomer`.
- Lua path
app.integrations.braintree.update_customer- Full name
braintree.braintree_update_customer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_emv_capture_data Write
Execute official Braintree GraphQL mutation field `updateEmvCaptureData`.
- Lua path
app.integrations.braintree.update_emv_capture_data- Full name
braintree.braintree_update_emv_capture_data
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_store_location Write
Execute official Braintree GraphQL mutation field `updateInStoreLocation`.
- Lua path
app.integrations.braintree.update_store_location- Full name
braintree.braintree_update_in_store_location
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_store_reader Write
Execute official Braintree GraphQL mutation field `updateInStoreReader`.
- Lua path
app.integrations.braintree.update_store_reader- Full name
braintree.braintree_update_in_store_reader
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_pay_pal_one_time_payment Write
Execute official Braintree GraphQL mutation field `updatePayPalOneTimePayment`.
- Lua path
app.integrations.braintree.update_pay_pal_one_time_payment- Full name
braintree.braintree_update_pay_pal_one_time_payment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_recurring_billing_subscription_plan Write
Execute official Braintree GraphQL mutation field `updateRecurringBillingSubscriptionPlan`.
- Lua path
app.integrations.braintree.update_recurring_billing_subscription_plan- Full name
braintree.braintree_update_recurring_billing_subscription_plan
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_transaction_amount Write
Execute official Braintree GraphQL mutation field `updateTransactionAmount`.
- Lua path
app.integrations.braintree.update_transaction_amount- Full name
braintree.braintree_update_transaction_amount
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_transaction_custom_fields Write
Execute official Braintree GraphQL mutation field `updateTransactionCustomFields`.
- Lua path
app.integrations.braintree.update_transaction_custom_fields- Full name
braintree.braintree_update_transaction_custom_fields
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vault_credit_card Write
Execute official Braintree GraphQL mutation field `vaultCreditCard`.
- Lua path
app.integrations.braintree.vault_credit_card- Full name
braintree.braintree_vault_credit_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vault_pay_pal_billing_agreement Write
Execute official Braintree GraphQL mutation field `vaultPayPalBillingAgreement`.
- Lua path
app.integrations.braintree.vault_pay_pal_billing_agreement- Full name
braintree.braintree_vault_pay_pal_billing_agreement
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vault_payment_method Write
Execute official Braintree GraphQL mutation field `vaultPaymentMethod`.
- Lua path
app.integrations.braintree.vault_payment_method- Full name
braintree.braintree_vault_payment_method
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
vault_us_bank_account Write
Execute official Braintree GraphQL mutation field `vaultUsBankAccount`.
- Lua path
app.integrations.braintree.vault_us_bank_account- Full name
braintree.braintree_vault_us_bank_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
verify_credit_card Write
Execute official Braintree GraphQL mutation field `verifyCreditCard`.
- Lua path
app.integrations.braintree.verify_credit_card- Full name
braintree.braintree_verify_credit_card
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
verify_payment_method Write
Execute official Braintree GraphQL mutation field `verifyPaymentMethod`.
- Lua path
app.integrations.braintree.verify_payment_method- Full name
braintree.braintree_verify_payment_method
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
verify_us_bank_account Write
Execute official Braintree GraphQL mutation field `verifyUsBankAccount`.
- Lua path
app.integrations.braintree.verify_us_bank_account- Full name
braintree.braintree_verify_us_bank_account
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
void_transaction Write
Execute official Braintree GraphQL mutation field `voidTransaction`.
- Lua path
app.integrations.braintree.void_transaction- Full name
braintree.braintree_void_transaction
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||