KosmoKrator

data

Airwallex MCP, CLI, and Lua Integration for AI Agents

Airwallex integration docs for AI agents: MCP gateway setup, Airwallex CLI commands, Lua API reference, credentials, and function schemas.

Airwallex for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Agent Surfaces

Machine-Readable Metadata

Function Catalog

FunctionTypeParametersDescription
airwallex.airwallex_authentication_obtain_access_token Read read 0 Authentication > API Access > Obtain access token. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/authentication/login.
airwallex.airwallex_billing_create_a_billing_customer Write write 1 Billing > Billing Customers > Create a Billing Customer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/billing_customers/create.
airwallex.airwallex_billing_update_a_billing_customer Write write 2 Billing > Billing Customers > Update a Billing Customer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/billing_customers/{billing_customer_id}/update.
airwallex.airwallex_billing_retrieve_a_billing_customer Read read 1 Billing > Billing Customers > Retrieve a Billing Customer. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_customers/{billing_customer_id}.
airwallex.airwallex_billing_get_list_of_blling_customers Read read 0 Billing > Billing Customers > Get list of Blling Customers. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_customers.
airwallex.airwallex_billing_create_a_product Write write 1 Billing > Products > Create a Product. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/products/create.
airwallex.airwallex_billing_update_a_product Write write 2 Billing > Products > Update a Product. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/products/{product_id}/update.
airwallex.airwallex_billing_retrieve_a_product Read read 1 Billing > Products > Retrieve a Product. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/products/{product_id}.
airwallex.airwallex_billing_get_list_of_products Read read 0 Billing > Products > Get list of Products. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/products.
airwallex.airwallex_billing_create_a_price_per_unit_one_off Write write 1 Billing > Prices > Create a Price - Per unit one off. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/prices/create.
airwallex.airwallex_billing_update_a_price Write write 2 Billing > Prices > Update a Price. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/prices/{price_id}/update.
airwallex.airwallex_billing_retrieve_a_price Read read 1 Billing > Prices > Retrieve a Price. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/prices/{price_id}.
airwallex.airwallex_billing_get_list_of_prices Read read 0 Billing > Prices > Get list of Prices. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/prices.
airwallex.airwallex_billing_create_a_billing_checkout_payment Write write 1 Billing > Billing Checkouts > Create a Billing Checkout - Payment. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/billing_checkouts/create.
airwallex.airwallex_billing_update_a_billing_checkout Write write 2 Billing > Billing Checkouts > Update a Billing Checkout. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/billing_checkouts/{billing_checkout_id}/update.
airwallex.airwallex_billing_retrieve_a_billing_checkout Read read 1 Billing > Billing Checkouts > Retrieve a Billing checkout. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_checkouts/{billing_checkout_id}.
airwallex.airwallex_billing_get_list_of_billing_checkouts Read read 0 Billing > Billing Checkouts > Get list of Billing Checkouts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_checkouts.
airwallex.airwallex_billing_cancel_a_billing_checkout Write write 2 Billing > Billing Checkouts > Cancel a Billing Checkout. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/billing_checkouts/{billing_checkout_id}/cancel.
airwallex.airwallex_billing_create_an_invoice Write write 1 Billing > Invoices > Create an Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/create.
airwallex.airwallex_billing_preview_an_invoice Read read 1 Billing > Invoices > Preview an Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/preview.
airwallex.airwallex_billing_update_an_invoice Write write 2 Billing > Invoices > Update an Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/{invoice_id}/update.
airwallex.airwallex_billing_delete_a_draft_invoice Write write 1 Billing > Invoices > Delete a Draft Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/{invoice_id}/delete.
airwallex.airwallex_billing_retrieve_an_invoice Read read 1 Billing > Invoices > Retrieve an Invoice. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/invoices/{invoice_id}.
airwallex.airwallex_billing_get_list_of_invoices Read read 0 Billing > Invoices > Get list of Invoices. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/invoices.
airwallex.airwallex_billing_finalize_an_invoice Read read 1 Billing > Invoices > Finalize an Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/{invoice_id}/finalize.
airwallex.airwallex_billing_mark_an_invoice_as_paid Write write 1 Billing > Invoices > Mark an Invoice as Paid. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/{invoice_id}/mark_as_paid.
airwallex.airwallex_billing_void_an_invoice Read read 1 Billing > Invoices > Void an Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/{invoice_id}/void.
airwallex.airwallex_billing_create_invoice_line_items_and_add_them_to_an_invoice Write write 2 Billing > Invoices > Create Invoice Line Items and add them to an Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/{invoice_id}/add_line_items.
airwallex.airwallex_billing_get_list_of_invoices_line_items Read read 1 Billing > Invoices > Get list of Invoices Line Items. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/invoices/{invoice_id}/line_items.
airwallex.airwallex_billing_get_a_billing_transaction Read read 1 Billing > Billing Transactions > Get a Billing Transaction. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_transactions/{billing_transaction_id}.
airwallex.airwallex_billing_get_a_list_of_billing_transactions Read read 1 Billing > Billing Transactions > Get a list of Billing Transactions. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_transactions.
airwallex.airwallex_billing_create_a_coupon Write write 1 Billing > Coupons > Create a Coupon. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/coupons/create.
airwallex.airwallex_billing_update_a_coupon Write write 2 Billing > Coupons > Update a Coupon. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/coupons/{coupon_id}/update.
airwallex.airwallex_billing_get_a_coupon Read read 1 Billing > Coupons > Get a Coupon. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/coupons/{coupon_id}.
airwallex.airwallex_billing_get_list_of_coupons Read read 0 Billing > Coupons > Get list of Coupons. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/coupons.
airwallex.airwallex_billing_create_a_payment_source Write write 1 Billing > Payment Sources > Create a Payment Source. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/payment_sources/create.
airwallex.airwallex_billing_get_a_payment_source Read read 1 Billing > Payment Sources > Get a Payment Source. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/payment_sources/{payment_source_id}.
airwallex.airwallex_billing_get_list_of_payment_sources Read read 0 Billing > Payment Sources > Get List of Payment Sources. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/payment_sources.
airwallex.airwallex_billing_create_a_meter Write write 1 Billing > Meters > Create a Meter. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/meters/create.
airwallex.airwallex_billing_update_a_meter Write write 2 Billing > Meters > Update a Meter. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/meters/{meter_id}/update.
airwallex.airwallex_billing_retrieve_a_meter Read read 1 Billing > Meters > Retrieve a Meter. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/meters/{meter_id}.
airwallex.airwallex_billing_archive_a_meter Write write 1 Billing > Meters > Archive a Meter. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/meters/{meter_id}/archive.
airwallex.airwallex_billing_restore_a_meter Read read 1 Billing > Meters > Restore a Meter. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/meters/{meter_id}/restore.
airwallex.airwallex_billing_get_list_of_meters Read read 0 Billing > Meters > Get list of Meters. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/meters.
airwallex.airwallex_billing_get_summaries_of_a_meter Read read 4 Billing > Meters > Get summaries of a Meter. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/meters/{meter_id}/summaries.
airwallex.airwallex_billing_ingest_a_usage_event Read read 1 Billing > Usage Events > Ingest a Usage Event. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/usage_events/ingest.
airwallex.airwallex_billing_batch_ingest_usage_events Read read 1 Billing > Usage Events > Batch Ingest Usage Events. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/usage_events/batch_ingest.
airwallex.airwallex_billing_void_a_usage_event Read read 1 Billing > Usage Events > Void a Usage Event. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/usage_events/void.
airwallex.airwallex_billing_create_a_subscription_checkout Write write 1 Billing > Subscriptions > Create a Subscription - Checkout. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/subscriptions/create.
airwallex.airwallex_billing_retrieve_a_subscription Read read 1 Billing > Subscriptions > Retrieve a Subscription. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/subscriptions/{subscription_id}.
airwallex.airwallex_billing_update_a_subscription Write write 2 Billing > Subscriptions > Update a Subscription. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/subscriptions/{subscription_id}/update.
airwallex.airwallex_billing_cancel_a_subscription Write write 2 Billing > Subscriptions > Cancel a Subscription. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/subscriptions/{subscription_id}/cancel.
airwallex.airwallex_billing_get_list_of_subscriptions Read read 0 Billing > Subscriptions > Get list of Subscriptions. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/subscriptions.
airwallex.airwallex_issuing_get_authorization_status Read read 0 Issuing > Authorizations > Get authorization status. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/authorizations.
airwallex.airwallex_issuing_get_single_authorization_status Read read 1 Issuing > Authorizations > Get single authorization status. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/authorizations/{issuing_transaction_id}.
airwallex.airwallex_issuing_create_a_cardholder Write write 1 Issuing > Cardholders > Create a cardholder. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/cardholders/create.
airwallex.airwallex_issuing_get_all_cardholders Read read 0 Issuing > Cardholders > Get all cardholders. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cardholders.
airwallex.airwallex_issuing_get_cardholder_details Read read 1 Issuing > Cardholders > Get cardholder details. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cardholders/{cardholder_id}.
airwallex.airwallex_issuing_update_a_cardholder Write write 2 Issuing > Cardholders > Update a cardholder. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/cardholders/{cardholder_id}/update.
airwallex.airwallex_issuing_create_a_card Write write 1 Issuing > Cards > Create a card. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/cards/create.
airwallex.airwallex_issuing_get_all_cards Read read 0 Issuing > Cards > Get all cards. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cards.
airwallex.airwallex_issuing_get_sensitive_card_details Read read 1 Issuing > Cards > Get sensitive card details. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cards/{card_id}/details.
airwallex.airwallex_issuing_activate_a_card Write write 1 Issuing > Cards > Activate a card. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/cards/{card_id}/activate.
airwallex.airwallex_issuing_get_card_details Read read 1 Issuing > Cards > Get card details. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cards/{card_id}.
airwallex.airwallex_issuing_get_card_remaining_limits Read read 1 Issuing > Cards > Get card remaining limits. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cards/{card_id}/limits.
airwallex.airwallex_issuing_update_a_card Write write 2 Issuing > Cards > Update a card. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/cards/{card_id}/update.
airwallex.airwallex_issuing_get_issuing_config Read read 0 Issuing > Config > Get issuing config. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/config.
airwallex.airwallex_issuing_update_issuing_config Write write 1 Issuing > Config > Update issuing config. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/config/update.
airwallex.airwallex_issuing_get_transactions Read read 0 Issuing > Transactions > Get transactions. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/transactions.
airwallex.airwallex_issuing_get_single_transaction Read read 1 Issuing > Transactions > Get single transaction. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/transactions/{issuing_transaction_id}.
airwallex.airwallex_online_payments_retrieve_available_payment_method_types Read read 4 Online Payments > Config > Retrieve available payment method types. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/config/payment_method_types.
airwallex.airwallex_online_payments_retrieve_bank_names_for_certain_payment_method_types Read read 2 Online Payments > Config > Retrieve bank names for certain payment method types. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/config/banks.
airwallex.airwallex_online_payments_create_a_customer Write write 1 Online Payments > Customers > Create a Customer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/customers/create.
airwallex.airwallex_online_payments_retrieve_a_customer Read read 1 Online Payments > Customers > Retrieve a Customer. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/customers/{customer_id}.
airwallex.airwallex_online_payments_update_a_customer Write write 2 Online Payments > Customers > Update a Customer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/customers/{customer_id}/update.
airwallex.airwallex_online_payments_generate_a_client_secret_for_a_customer Read read 1 Online Payments > Customers > Generate a client secret for a Customer. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/customers/{customer_id}/generate_client_secret.
airwallex.airwallex_online_payments_get_list_of_customers Read read 0 Online Payments > Customers > Get list of Customers. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/customers.
airwallex.airwallex_online_payments_create_a_customs_declaration Write write 1 Online Payments > Customs Declarations > Create a customs declaration. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/customs_declarations/create.
airwallex.airwallex_online_payments_create_a_fundssplit Write write 1 Online Payments > Fund Splits > Create a FundsSplit. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/funds_splits/create.
airwallex.airwallex_online_payments_retrieve_a_fundssplit Read read 1 Online Payments > Fund Splits > Retrieve a FundsSplit. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/funds_splits/{fund_split_id}.
airwallex.airwallex_online_payments_get_list_of_fundssplits Read read 0 Online Payments > Fund Splits > Get list of FundsSplits. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/funds_splits.
airwallex.airwallex_online_payments_release_a_fundssplit Read read 2 Online Payments > Fund Splits > Release a FundsSplit. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/funds_splits/{fund_split_id}/release.
airwallex.airwallex_online_payments_retrieve_a_paymentattempt_by_id Read read 1 Online Payments > Payment Attempts > Retrieve a PaymentAttempt by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_attempts/{payment_attempt_id}.
airwallex.airwallex_online_payments_retrieve_list_of_paymentattempts Read read 0 Online Payments > Payment Attempts > Retrieve list of PaymentAttempts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_attempts.
airwallex.airwallex_online_payments_create_a_paymentconsent Write write 1 Online Payments > Payment Consents > Create a PaymentConsent. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_consents/create.
airwallex.airwallex_online_payments_update_a_paymentconsent Write write 2 Online Payments > Payment Consents > Update a PaymentConsent. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_consents/{payment_consent_id}/update.
airwallex.airwallex_online_payments_disable_a_paymentconsent Write write 2 Online Payments > Payment Consents > Disable a PaymentConsent. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_consents/{payment_consent_id}/disable.
airwallex.airwallex_online_payments_verify_a_paymentconsent_card Write write 2 Online Payments > Payment Consents > Verify a PaymentConsent - Card. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_consents/{id}/verify.
airwallex.airwallex_online_payments_continue_to_verify_a_paymentconsent Write write 2 Online Payments > Payment Consents > Continue to Verify a PaymentConsent. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_consents/{payment_consent_id}/verify_continue.
airwallex.airwallex_online_payments_get_a_paymentconsent Read read 1 Online Payments > Payment Consents > Get a PaymentConsent. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_consents/{payment_consent_id}.
airwallex.airwallex_online_payments_get_list_of_paymentconsents Read read 0 Online Payments > Payment Consents > Get list of PaymentConsents. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_consents.
airwallex.airwallex_online_payments_create_a_paymentintent_mvp Write write 1 Online Payments > Payment Intents > Create a PaymentIntent - MVP. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_intents/create.
airwallex.airwallex_online_payments_retrieve_a_paymentintent Read read 1 Online Payments > Payment Intents > Retrieve a PaymentIntent. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_intents/{payment_intent_id}.
airwallex.airwallex_online_payments_confirm_a_paymentintent_payment_method_card Read read 2 Online Payments > Payment Intents > Confirm a PaymentIntent - payment_method = card. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_intents/{payment_intent_id}/confirm.
airwallex.airwallex_online_payments_continue_to_confirm_a_paymentintent Read read 2 Online Payments > Payment Intents > Continue to confirm a PaymentIntent. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_intents/{payment_intent_id}/confirm_continue.
airwallex.airwallex_online_payments_capture_a_paymentintent Read read 2 Online Payments > Payment Intents > Capture a PaymentIntent. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_intents/{payment_intent_id}/capture.
airwallex.airwallex_online_payments_get_list_of_paymentintents Read read 0 Online Payments > Payment Intents > Get list of PaymentIntents. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_intents.
airwallex.airwallex_online_payments_create_a_paymentmethod Write write 1 Online Payments > Payment Methods > Create a PaymentMethod. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_methods/create.
airwallex.airwallex_online_payments_retrieve_a_paymentmethod Read read 1 Online Payments > Payment Methods > Retrieve a PaymentMethod. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_methods/{payment_method_id}.
airwallex.airwallex_online_payments_update_a_paymentmethod Write write 2 Online Payments > Payment Methods > Update a PaymentMethod. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_methods/{payment_method_id}/update.
airwallex.airwallex_online_payments_get_list_of_paymentmethods Read read 0 Online Payments > Payment Methods > Get list of PaymentMethods. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_methods.
airwallex.airwallex_online_payments_disable_a_paymentmethod Write write 2 Online Payments > Payment Methods > Disable a PaymentMethod. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_methods/{payment_method_id}/disable.
airwallex.airwallex_online_payments_create_a_refund Write write 1 Online Payments > Refunds > Create a Refund. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/refunds/create.
airwallex.airwallex_online_payments_retrieve_a_refund Read read 1 Online Payments > Refunds > Retrieve a Refund. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/refunds/{refund_id}.
airwallex.airwallex_online_payments_get_list_of_refunds Read read 0 Online Payments > Refunds > Get list of Refunds. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/refunds.
airwallex.airwallex_payouts_get_list_of_beneficiaries Read read 0 Payouts > Beneficiaries > Get list of beneficiaries. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/beneficiaries.
airwallex.airwallex_payouts_get_a_beneficiary_by_id Read read 1 Payouts > Beneficiaries > Get a beneficiary by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/beneficiaries/{beneficiary_id}.
airwallex.airwallex_payouts_create_a_new_beneficiary Write write 1 Payouts > Beneficiaries > Create a new beneficiary. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiaries/create.
airwallex.airwallex_payouts_update_existing_beneficiary Write write 2 Payouts > Beneficiaries > Update existing beneficiary. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiaries/{beneficiary_id}/update.
airwallex.airwallex_payouts_validate_beneficiary Read read 1 Payouts > Beneficiaries > Validate beneficiary. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiaries/validate.
airwallex.airwallex_payouts_delete_existing_beneficiary Write write 1 Payouts > Beneficiaries > Delete existing beneficiary. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiaries/{id}/delete.
airwallex.airwallex_payouts_get_the_api_schema Read read 1 Payouts > Beneficiaries > Get the API schema. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiary_api_schemas/generate.
airwallex.airwallex_payouts_get_the_form_schema Read read 1 Payouts > Beneficiaries > Get the form schema. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiary_form_schemas/generate.
airwallex.airwallex_payouts_get_list_of_payers Read read 0 Payouts > Payers > Get list of payers. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/payers.
airwallex.airwallex_payouts_create_a_new_payer Write write 1 Payouts > Payers > Create a new payer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/payers/create.
airwallex.airwallex_payouts_get_a_payer_by_id Read read 1 Payouts > Payers > Get a payer by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/payers/{payer_id}.
airwallex.airwallex_payouts_update_existing_payer Write write 2 Payouts > Payers > Update existing payer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/payers/{payer_id}/update.
airwallex.airwallex_payouts_validate_payer Read read 1 Payouts > Payers > Validate payer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/payers/validate.
airwallex.airwallex_payouts_delete_existing_payer Write write 1 Payouts > Payers > Delete existing payer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/payers/{payer_id}/delete.
airwallex.airwallex_payouts_create_a_new_transfer_to_beneficiary Write write 1 Payouts > Transfers > Create a new transfer - to beneficiary. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/transfers/create.
airwallex.airwallex_payouts_get_list_of_transfers Read read 0 Payouts > Transfers > Get list of transfers. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/transfers.
airwallex.airwallex_payouts_get_transfer_by_id Read read 1 Payouts > Transfers > Get transfer by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/transfers/{transfer_id}.
airwallex.airwallex_payouts_validate_transfer Read read 1 Payouts > Transfers > Validate transfer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/transfers/validate.
airwallex.airwallex_payouts_cancel_a_transfer Write write 1 Payouts > Transfers > Cancel a transfer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/transfers/{transfer_id}/cancel.
airwallex.airwallex_reporting_create_a_financial_report Write write 1 Reporting > Financial Reports > Create a financial report. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/finance/financial_reports/create.
airwallex.airwallex_reporting_get_list_of_financial_reports Read read 0 Reporting > Financial Reports > Get list of financial reports. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/finance/financial_reports.
airwallex.airwallex_reporting_get_financial_report_by_id Read read 1 Reporting > Financial Reports > Get financial report by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/finance/financial_reports/{report_id}.
airwallex.airwallex_reporting_get_contents_of_a_financial_report Read read 1 Reporting > Financial Reports > Get contents of a financial report. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/finance/financial_reports/{report_id}/content.
airwallex.airwallex_reporting_get_list_of_financial_transactions Read read 2 Reporting > Financial Transactions > Get list of financial transactions. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/financial_transactions.
airwallex.airwallex_reporting_get_a_financial_transaction_by_id Read read 1 Reporting > Financial Transactions > Get a financial transaction by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/financial_transactions/{financial_transaction_id}.
airwallex.airwallex_reporting_get_list_of_settlements Read read 0 Reporting > Settlements > Get list of settlements. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/financial/settlements.
airwallex.airwallex_reporting_get_a_settlement_by_id Read read 1 Reporting > Settlements > Get a settlement by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/financial/settlements/{settlement_id}.
airwallex.airwallex_reporting_get_a_settlement_report_by_id Read read 1 Reporting > Settlements > Get a settlement report by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/financial/settlements/{settlement_id}/report.
airwallex.airwallex_scale_create_an_account_invitation_link_oauth2 Write write 1 Scale > Account Links > Create an account invitation link - oauth2. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/accounts/invitation_links/create.
airwallex.airwallex_scale_get_an_account_invitation_link_by_id Read read 1 Scale > Account Links > Get an account invitation link by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/accounts/invitation_links/{invitation_link_id}.
airwallex.airwallex_scale_create_an_account_business Write write 1 Scale > Accounts > Create an account - Business. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/accounts/create.
airwallex.airwallex_scale_update_a_connected_account Write write 2 Scale > Accounts > Update a connected account. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/accounts/{connected_account_id}/update.
airwallex.airwallex_scale_submit_account_for_activation Write write 1 Scale > Accounts > Submit account for activation. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/accounts/{connected_account_id}/submit.
airwallex.airwallex_scale_agree_to_terms_and_conditions Read read 1 Scale > Accounts > Agree to terms and conditions. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/accounts/{connected_account_id}/terms_and_conditions/agree.
airwallex.airwallex_scale_get_account_by_id Read read 1 Scale > Accounts > Get account by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/accounts/{connected_account_id}.
airwallex.airwallex_scale_get_list_of_connected_accounts Read read 0 Scale > Accounts > Get list of connected accounts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/accounts.
airwallex.airwallex_scale_retrieve_account_details Read read 0 Scale > Accounts > Retrieve account details. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/account.
airwallex.airwallex_scale_create_a_new_charge Write write 1 Scale > Charges > Create a new charge. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/charges/create.
airwallex.airwallex_scale_get_list_of_charges Read read 0 Scale > Charges > Get list of charges. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/charges.
airwallex.airwallex_scale_get_a_charge_by_id Read read 1 Scale > Charges > Get a charge by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/charges/{charge_id}.
airwallex.airwallex_scale_create_flow Write write 1 Scale > Hosted Flow > Create flow. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/hosted_flows/create.
airwallex.airwallex_scale_get_flow Read read 1 Scale > Hosted Flow > Get flow. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/hosted_flows/{hosted_flow_instance_id}.
airwallex.airwallex_scale_authorize_flow Read read 2 Scale > Hosted Flow > Authorize flow. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/hosted_flows/{hosted_flow_instance_id}/authorize.
airwallex.airwallex_scale_create_a_new_connected_account_transfer Write write 1 Scale > Connected Account Transfers > Create a new connected account transfer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/connected_account_transfers/create.
airwallex.airwallex_scale_get_list_of_connected_account_transfers Read read 0 Scale > Connected Account Transfers > Get list of connected account transfers. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/connected_account_transfers.
airwallex.airwallex_scale_get_a_connected_account_transfer_by_id Read read 1 Scale > Connected Account Transfers > Get a connected account transfer by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/connected_account_transfers/{transfer_id}.
airwallex.airwallex_simulation_demo_only_update_status_of_connected_account Write write 2 Simulation (Demo Only) > Accounts > Update status of connected account. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/accounts/{account_id}/update_status.
airwallex.airwallex_simulation_demo_only_fail_next_autocharge Read read 1 Simulation (Demo Only) > Billing > Fail next autocharge. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/billing/payment_sources/{payment_source_id}/fail_next_autocharge.
airwallex.airwallex_simulation_demo_only_create_a_global_account_deposit Write write 1 Simulation (Demo Only) > Deposits > Create a global account deposit. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/deposit/create.
airwallex.airwallex_simulation_demo_only_reject_a_direct_debit_deposit Read read 1 Simulation (Demo Only) > Deposits > Reject a direct debit deposit. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/deposits/{deposit_id}/reject.
airwallex.airwallex_simulation_demo_only_reverse_a_direct_debit_deposit Read read 1 Simulation (Demo Only) > Deposits > Reverse a direct debit deposit. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/deposits/{deposit_id}/reverse.
airwallex.airwallex_simulation_demo_only_settle_a_direct_debit_deposit Read read 1 Simulation (Demo Only) > Deposits > Settle a direct debit deposit. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/deposits/{deposit_id}/settle.
airwallex.airwallex_simulation_demo_only_create_a_transaction_for_the_provided_card Write write 1 Simulation (Demo Only) > Issuing > Create a transaction for the provided card. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/issuing/create.
airwallex.airwallex_simulation_demo_only_capture_the_transaction_with_the_provided_id Read read 2 Simulation (Demo Only) > Issuing > Capture the transaction with the provided id. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/issuing/{transaction_id}/capture.
airwallex.airwallex_simulation_demo_only_accept_a_mandate Read read 1 Simulation (Demo Only) > Linked Accounts > Accept a Mandate. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/linked_accounts/{linked_account_id}/mandate/accept.
airwallex.airwallex_simulation_demo_only_reject_a_mandate Read read 1 Simulation (Demo Only) > Linked Accounts > Reject a Mandate. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/linked_accounts/{linked_account_id}/mandate/reject.
airwallex.airwallex_simulation_demo_only_cancel_a_mandate Write write 1 Simulation (Demo Only) > Linked Accounts > Cancel a Mandate. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/linked_accounts/{linked_account_id}/mandate/cancel.
airwallex.airwallex_simulation_demo_only_fail_a_micro_deposits_verification Read read 1 Simulation (Demo Only) > Linked Accounts > Fail a Micro Deposits verification. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/linked_accounts/{linked_account_id}/fail_microdeposits.
airwallex.airwallex_simulation_demo_only_create_a_paymentdispute Write write 1 Simulation (Demo Only) > Payment Acceptance > Create a PaymentDispute. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/pa/payment_disputes/create.
airwallex.airwallex_simulation_demo_only_resolve_a_paymentdispute Read read 2 Simulation (Demo Only) > Payment Acceptance > Resolve a PaymentDispute. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/pa/payment_disputes/{dispute_id}/resolve.
airwallex.airwallex_simulation_demo_only_escalate_a_paymentdispute Read read 2 Simulation (Demo Only) > Payment Acceptance > Escalate a PaymentDispute. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/pa/payment_disputes/{dispute_id}/escalate.
airwallex.airwallex_simulation_demo_only_simulate_a_shopper_action Read read 2 Simulation (Demo Only) > Payment Acceptance > Simulate a shopper action. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/pa/shopper_actions/{action}.
airwallex.airwallex_simulation_demo_only_transition_payment_status Read read 2 Simulation (Demo Only) > Payouts > Transition Payment Status. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/payments/{id}/transition.
airwallex.airwallex_simulation_demo_only_create_an_rfi Write write 1 Simulation (Demo Only) > Request for Information (RFI) > Create an RFI. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/rfis/create.
airwallex.airwallex_simulation_demo_only_follow_up_rfi Read read 2 Simulation (Demo Only) > Request for Information (RFI) > Follow-up RFI. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/rfis/{rfi_id}/follow_up.
airwallex.airwallex_simulation_demo_only_close_an_rfi Read read 1 Simulation (Demo Only) > Request for Information (RFI) > Close an RFI. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/rfis/{rfi_id}/close.
airwallex.airwallex_simulation_demo_only_transition_transfer_status Read read 2 Simulation (Demo Only) > Transfers > Transition Transfer Status. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/transfers/{transfer_id}/transition.
airwallex.airwallex_supporting_services_upload_a_file Read read 1 Supporting Services > File Service > Upload a file. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/files/upload.
airwallex.airwallex_supporting_services_get_onboarding_file_download_links Read read 1 Supporting Services > File Service > Get onboarding file download links. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/files/download_links.
airwallex.airwallex_supporting_services_industry_categories Read read 0 Supporting Services > Reference Data > Industry categories. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/reference/industry_categories.
airwallex.airwallex_supporting_services_invalid_conversion_dates Read read 1 Supporting Services > Reference Data > Invalid conversion dates. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/reference/invalid_conversion_dates.
airwallex.airwallex_supporting_services_settlement_accounts Read read 0 Supporting Services > Reference Data > Settlement accounts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/reference/settlement_accounts.
airwallex.airwallex_supporting_services_supported_currencies Read read 0 Supporting Services > Reference Data > Supported currencies. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/reference/supported_currencies.
airwallex.airwallex_transactional_fx_create_a_quote Write write 1 Transactional FX > Quotes > Create a quote. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/fx/quotes/create.
airwallex.airwallex_transactional_fx_create_a_conversion_buy_amount_based Write write 1 Transactional FX > Conversion > Create a conversion - buy_amount based. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/fx/conversions/create.
airwallex.airwallex_transactional_fx_retrieve_a_specific_conversion Read read 1 Transactional FX > Conversion > Retrieve a specific conversion. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/fx/conversions/{conversion_id}.
airwallex.airwallex_transactional_fx_list_conversions Read read 0 Transactional FX > Conversion > List conversions. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/fx/conversions.
airwallex.airwallex_transactional_fx_create_an_amendment_quote Write write 1 Transactional FX > Conversion Amendments > Create an amendment quote. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/fx/conversion_amendments/quote.
airwallex.airwallex_transactional_fx_retrieve_a_current_rate Read read 3 Transactional FX > Rates > Retrieve a current rate. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/fx/rates/current.
airwallex.airwallex_treasury_get_current_balances Read read 0 Treasury > Balances > Get current balances. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/balances/current.
airwallex.airwallex_treasury_get_balance_history Read read 0 Treasury > Balances > Get balance history. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/balances/history.
airwallex.airwallex_treasury_get_list_of_deposits Read read 0 Treasury > Deposits > Get list of deposits. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/deposits.
airwallex.airwallex_treasury_get_a_deposit_by_id Read read 1 Treasury > Deposits > Get a deposit by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/deposits/{deposit_id}.
airwallex.airwallex_treasury_create_a_deposit_via_direct_debit Write write 1 Treasury > Deposits > Create a deposit via Direct Debit. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/deposits/create.
airwallex.airwallex_treasury_open_a_global_account Read read 1 Treasury > Global Accounts > Open a global account. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/global_accounts/create.
airwallex.airwallex_treasury_generate_global_account_statement_amazon Read read 2 Treasury > Global Accounts > Generate global account statement - AMAZON. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/global_accounts/{global_account_id}/generate_statement_letter.
airwallex.airwallex_treasury_get_a_list_of_global_accounts Read read 0 Treasury > Global Accounts > Get a list of global accounts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/global_accounts.
airwallex.airwallex_treasury_get_global_account_by_id Read read 1 Treasury > Global Accounts > Get global account by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/global_accounts/{global_account_id}.
airwallex.airwallex_treasury_get_global_account_transactions Read read 1 Treasury > Global Accounts > Get global account transactions. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/global_accounts/{global_account_id}/transactions.
airwallex.airwallex_treasury_create_linked_bank_account Write write 1 Treasury > Direct Debit LBA > Create Linked Bank Account. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/linked_accounts/create.
airwallex.airwallex_treasury_verify_linked_account_with_micro_deposits Write write 2 Treasury > Direct Debit LBA > Verify Linked Account with micro-deposits. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/linked_accounts/{linked_account_id}/verify_microdeposits.
airwallex.airwallex_treasury_get_linked_bank_accounts Read read 0 Treasury > Direct Debit LBA > Get Linked Bank Accounts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/linked_accounts.
airwallex.airwallex_treasury_get_linked_bank_account_by_id Read read 1 Treasury > Direct Debit LBA > Get Linked Bank Account by id. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/linked_accounts/{linked_account_id}.
airwallex.airwallex_treasury_update_mandate_for_lba Write write 2 Treasury > Direct Debit LBA > Update Mandate for LBA. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/linked_accounts/{linked_account_id}/mandate.
airwallex.airwallex_treasury_get_mandate Read read 1 Treasury > Direct Debit LBA > Get mandate. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/linked_accounts/{linked_account_id}/mandate.
airwallex.airwallex_treasury_funding_limits Read read 0 Treasury > Direct Debit LBA > Funding limits. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/account_capabilities/funding_limits.