KosmoKrator

data

Airwallex CLI for AI Agents

Use the Airwallex CLI from KosmoKrator to call Airwallex tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Airwallex CLI Setup

Airwallex can be configured headlessly with `kosmokrator integrations:configure airwallex`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure airwallex --enable --read allow --write ask --json
kosmokrator integrations:doctor airwallex --json
kosmokrator integrations:status --json

Credentials

Authentication type: api key with bearer token api_key_with_bearer_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
access_token AIRWALLEX_ACCESS_TOKEN Secret secret no Access Token
client_id AIRWALLEX_CLIENT_ID Text text no Client ID
api_key AIRWALLEX_API_KEY Secret secret no API Key

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call airwallex.airwallex_authentication_obtain_access_token '{}' --json
Provider shortcut
kosmo integrations:airwallex airwallex_authentication_obtain_access_token '{}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs airwallex --json
kosmo integrations:docs airwallex.airwallex_authentication_obtain_access_token --json
kosmo integrations:schema airwallex.airwallex_authentication_obtain_access_token --json
kosmo integrations:search "Airwallex" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

airwallex.airwallex_authentication_obtain_access_token

Authentication > API Access > Obtain access token. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/authentication/login.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_authentication_obtain_access_token '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_authentication_obtain_access_token '{}' --json

airwallex.airwallex_billing_create_a_billing_customer

Billing > Billing Customers > Create a Billing Customer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/billing_customers/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_create_a_billing_customer '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_create_a_billing_customer '{"body":"example_body"}' --json

airwallex.airwallex_billing_update_a_billing_customer

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.

Write write
Parameters
billing_customer_id, body
Generic call
kosmo integrations:call airwallex.airwallex_billing_update_a_billing_customer '{"billing_customer_id":"example_billing_customer_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_update_a_billing_customer '{"billing_customer_id":"example_billing_customer_id","body":"example_body"}' --json

airwallex.airwallex_billing_retrieve_a_billing_customer

Billing > Billing Customers > Retrieve a Billing Customer. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_customers/{billing_customer_id}.

Read read
Parameters
billing_customer_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_retrieve_a_billing_customer '{"billing_customer_id":"example_billing_customer_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_retrieve_a_billing_customer '{"billing_customer_id":"example_billing_customer_id"}' --json

airwallex.airwallex_billing_get_list_of_blling_customers

Billing > Billing Customers > Get list of Blling Customers. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_customers.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_list_of_blling_customers '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_list_of_blling_customers '{}' --json

airwallex.airwallex_billing_create_a_product

Billing > Products > Create a Product. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/products/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_create_a_product '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_create_a_product '{"body":"example_body"}' --json

airwallex.airwallex_billing_update_a_product

Billing > Products > Update a Product. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/products/{product_id}/update.

Write write
Parameters
product_id, body
Generic call
kosmo integrations:call airwallex.airwallex_billing_update_a_product '{"product_id":"example_product_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_update_a_product '{"product_id":"example_product_id","body":"example_body"}' --json

airwallex.airwallex_billing_retrieve_a_product

Billing > Products > Retrieve a Product. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/products/{product_id}.

Read read
Parameters
product_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_retrieve_a_product '{"product_id":"example_product_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_retrieve_a_product '{"product_id":"example_product_id"}' --json

airwallex.airwallex_billing_get_list_of_products

Billing > Products > Get list of Products. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/products.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_list_of_products '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_list_of_products '{}' --json

airwallex.airwallex_billing_create_a_price_per_unit_one_off

Billing > Prices > Create a Price - Per unit one off. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/prices/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_create_a_price_per_unit_one_off '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_create_a_price_per_unit_one_off '{"body":"example_body"}' --json

airwallex.airwallex_billing_update_a_price

Billing > Prices > Update a Price. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/prices/{price_id}/update.

Write write
Parameters
price_id, body
Generic call
kosmo integrations:call airwallex.airwallex_billing_update_a_price '{"price_id":"example_price_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_update_a_price '{"price_id":"example_price_id","body":"example_body"}' --json

airwallex.airwallex_billing_retrieve_a_price

Billing > Prices > Retrieve a Price. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/prices/{price_id}.

Read read
Parameters
price_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_retrieve_a_price '{"price_id":"example_price_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_retrieve_a_price '{"price_id":"example_price_id"}' --json

airwallex.airwallex_billing_get_list_of_prices

Billing > Prices > Get list of Prices. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/prices.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_list_of_prices '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_list_of_prices '{}' --json

airwallex.airwallex_billing_create_a_billing_checkout_payment

Billing > Billing Checkouts > Create a Billing Checkout - Payment. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/billing_checkouts/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_create_a_billing_checkout_payment '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_create_a_billing_checkout_payment '{"body":"example_body"}' --json

airwallex.airwallex_billing_update_a_billing_checkout

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.

Write write
Parameters
billing_checkout_id, body
Generic call
kosmo integrations:call airwallex.airwallex_billing_update_a_billing_checkout '{"billing_checkout_id":"example_billing_checkout_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_update_a_billing_checkout '{"billing_checkout_id":"example_billing_checkout_id","body":"example_body"}' --json

airwallex.airwallex_billing_retrieve_a_billing_checkout

Billing > Billing Checkouts > Retrieve a Billing checkout. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_checkouts/{billing_checkout_id}.

Read read
Parameters
billing_checkout_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_retrieve_a_billing_checkout '{"billing_checkout_id":"example_billing_checkout_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_retrieve_a_billing_checkout '{"billing_checkout_id":"example_billing_checkout_id"}' --json

airwallex.airwallex_billing_get_list_of_billing_checkouts

Billing > Billing Checkouts > Get list of Billing Checkouts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_checkouts.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_list_of_billing_checkouts '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_list_of_billing_checkouts '{}' --json

airwallex.airwallex_billing_cancel_a_billing_checkout

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.

Write write
Parameters
billing_checkout_id, body
Generic call
kosmo integrations:call airwallex.airwallex_billing_cancel_a_billing_checkout '{"billing_checkout_id":"example_billing_checkout_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_cancel_a_billing_checkout '{"billing_checkout_id":"example_billing_checkout_id","body":"example_body"}' --json

airwallex.airwallex_billing_create_an_invoice

Billing > Invoices > Create an Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_create_an_invoice '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_create_an_invoice '{"body":"example_body"}' --json

airwallex.airwallex_billing_preview_an_invoice

Billing > Invoices > Preview an Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/preview.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_preview_an_invoice '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_preview_an_invoice '{"body":"example_body"}' --json

airwallex.airwallex_billing_update_an_invoice

Billing > Invoices > Update an Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/{invoice_id}/update.

Write write
Parameters
invoice_id, body
Generic call
kosmo integrations:call airwallex.airwallex_billing_update_an_invoice '{"invoice_id":"example_invoice_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_update_an_invoice '{"invoice_id":"example_invoice_id","body":"example_body"}' --json

airwallex.airwallex_billing_delete_a_draft_invoice

Billing > Invoices > Delete a Draft Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/{invoice_id}/delete.

Write write
Parameters
invoice_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_delete_a_draft_invoice '{"invoice_id":"example_invoice_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_delete_a_draft_invoice '{"invoice_id":"example_invoice_id"}' --json

airwallex.airwallex_billing_retrieve_an_invoice

Billing > Invoices > Retrieve an Invoice. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/invoices/{invoice_id}.

Read read
Parameters
invoice_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_retrieve_an_invoice '{"invoice_id":"example_invoice_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_retrieve_an_invoice '{"invoice_id":"example_invoice_id"}' --json

airwallex.airwallex_billing_get_list_of_invoices

Billing > Invoices > Get list of Invoices. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/invoices.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_list_of_invoices '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_list_of_invoices '{}' --json

airwallex.airwallex_billing_finalize_an_invoice

Billing > Invoices > Finalize an Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/{invoice_id}/finalize.

Read read
Parameters
invoice_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_finalize_an_invoice '{"invoice_id":"example_invoice_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_finalize_an_invoice '{"invoice_id":"example_invoice_id"}' --json

airwallex.airwallex_billing_mark_an_invoice_as_paid

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.

Write write
Parameters
invoice_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_mark_an_invoice_as_paid '{"invoice_id":"example_invoice_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_mark_an_invoice_as_paid '{"invoice_id":"example_invoice_id"}' --json

airwallex.airwallex_billing_void_an_invoice

Billing > Invoices > Void an Invoice. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/invoices/{invoice_id}/void.

Read read
Parameters
invoice_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_void_an_invoice '{"invoice_id":"example_invoice_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_void_an_invoice '{"invoice_id":"example_invoice_id"}' --json

airwallex.airwallex_billing_create_invoice_line_items_and_add_them_to_an_invoice

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.

Write write
Parameters
invoice_id, body
Generic call
kosmo integrations:call airwallex.airwallex_billing_create_invoice_line_items_and_add_them_to_an_invoice '{"invoice_id":"example_invoice_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_create_invoice_line_items_and_add_them_to_an_invoice '{"invoice_id":"example_invoice_id","body":"example_body"}' --json

airwallex.airwallex_billing_get_list_of_invoices_line_items

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.

Read read
Parameters
invoice_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_list_of_invoices_line_items '{"invoice_id":"example_invoice_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_list_of_invoices_line_items '{"invoice_id":"example_invoice_id"}' --json

airwallex.airwallex_billing_get_a_billing_transaction

Billing > Billing Transactions > Get a Billing Transaction. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_transactions/{billing_transaction_id}.

Read read
Parameters
billing_transaction_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_a_billing_transaction '{"billing_transaction_id":"example_billing_transaction_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_a_billing_transaction '{"billing_transaction_id":"example_billing_transaction_id"}' --json

airwallex.airwallex_billing_get_a_list_of_billing_transactions

Billing > Billing Transactions > Get a list of Billing Transactions. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/billing_transactions.

Read read
Parameters
invoice_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_a_list_of_billing_transactions '{"invoice_id":"example_invoice_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_a_list_of_billing_transactions '{"invoice_id":"example_invoice_id"}' --json

airwallex.airwallex_billing_create_a_coupon

Billing > Coupons > Create a Coupon. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/coupons/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_create_a_coupon '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_create_a_coupon '{"body":"example_body"}' --json

airwallex.airwallex_billing_update_a_coupon

Billing > Coupons > Update a Coupon. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/coupons/{coupon_id}/update.

Write write
Parameters
coupon_id, body
Generic call
kosmo integrations:call airwallex.airwallex_billing_update_a_coupon '{"coupon_id":"example_coupon_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_update_a_coupon '{"coupon_id":"example_coupon_id","body":"example_body"}' --json

airwallex.airwallex_billing_get_a_coupon

Billing > Coupons > Get a Coupon. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/coupons/{coupon_id}.

Read read
Parameters
coupon_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_a_coupon '{"coupon_id":"example_coupon_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_a_coupon '{"coupon_id":"example_coupon_id"}' --json

airwallex.airwallex_billing_get_list_of_coupons

Billing > Coupons > Get list of Coupons. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/coupons.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_list_of_coupons '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_list_of_coupons '{}' --json

airwallex.airwallex_billing_create_a_payment_source

Billing > Payment Sources > Create a Payment Source. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/payment_sources/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_create_a_payment_source '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_create_a_payment_source '{"body":"example_body"}' --json

airwallex.airwallex_billing_get_a_payment_source

Billing > Payment Sources > Get a Payment Source. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/payment_sources/{payment_source_id}.

Read read
Parameters
payment_source_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_a_payment_source '{"payment_source_id":"example_payment_source_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_a_payment_source '{"payment_source_id":"example_payment_source_id"}' --json

airwallex.airwallex_billing_get_list_of_payment_sources

Billing > Payment Sources > Get List of Payment Sources. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/payment_sources.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_list_of_payment_sources '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_list_of_payment_sources '{}' --json

airwallex.airwallex_billing_create_a_meter

Billing > Meters > Create a Meter. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/meters/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_create_a_meter '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_create_a_meter '{"body":"example_body"}' --json

airwallex.airwallex_billing_update_a_meter

Billing > Meters > Update a Meter. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/meters/{meter_id}/update.

Write write
Parameters
meter_id, body
Generic call
kosmo integrations:call airwallex.airwallex_billing_update_a_meter '{"meter_id":"example_meter_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_update_a_meter '{"meter_id":"example_meter_id","body":"example_body"}' --json

airwallex.airwallex_billing_retrieve_a_meter

Billing > Meters > Retrieve a Meter. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/meters/{meter_id}.

Read read
Parameters
meter_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_retrieve_a_meter '{"meter_id":"example_meter_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_retrieve_a_meter '{"meter_id":"example_meter_id"}' --json

airwallex.airwallex_billing_archive_a_meter

Billing > Meters > Archive a Meter. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/meters/{meter_id}/archive.

Write write
Parameters
meter_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_archive_a_meter '{"meter_id":"example_meter_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_archive_a_meter '{"meter_id":"example_meter_id"}' --json

airwallex.airwallex_billing_restore_a_meter

Billing > Meters > Restore a Meter. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/meters/{meter_id}/restore.

Read read
Parameters
meter_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_restore_a_meter '{"meter_id":"example_meter_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_restore_a_meter '{"meter_id":"example_meter_id"}' --json

airwallex.airwallex_billing_get_list_of_meters

Billing > Meters > Get list of Meters. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/meters.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_list_of_meters '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_list_of_meters '{}' --json

airwallex.airwallex_billing_get_summaries_of_a_meter

Billing > Meters > Get summaries of a Meter. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/meters/{meter_id}/summaries.

Read read
Parameters
meter_id, billing_customer_id, from_happened_at, to_happened_at
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_summaries_of_a_meter '{"meter_id":"example_meter_id","billing_customer_id":"example_billing_customer_id","from_happened_at":"example_from_happened_at","to_happened_at":"example_to_happened_at"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_summaries_of_a_meter '{"meter_id":"example_meter_id","billing_customer_id":"example_billing_customer_id","from_happened_at":"example_from_happened_at","to_happened_at":"example_to_happened_at"}' --json

airwallex.airwallex_billing_ingest_a_usage_event

Billing > Usage Events > Ingest a Usage Event. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/usage_events/ingest.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_ingest_a_usage_event '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_ingest_a_usage_event '{"body":"example_body"}' --json

airwallex.airwallex_billing_batch_ingest_usage_events

Billing > Usage Events > Batch Ingest Usage Events. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/usage_events/batch_ingest.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_batch_ingest_usage_events '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_batch_ingest_usage_events '{"body":"example_body"}' --json

airwallex.airwallex_billing_void_a_usage_event

Billing > Usage Events > Void a Usage Event. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/usage_events/void.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_void_a_usage_event '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_void_a_usage_event '{"body":"example_body"}' --json

airwallex.airwallex_billing_create_a_subscription_checkout

Billing > Subscriptions > Create a Subscription - Checkout. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/subscriptions/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_billing_create_a_subscription_checkout '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_create_a_subscription_checkout '{"body":"example_body"}' --json

airwallex.airwallex_billing_retrieve_a_subscription

Billing > Subscriptions > Retrieve a Subscription. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/subscriptions/{subscription_id}.

Read read
Parameters
subscription_id
Generic call
kosmo integrations:call airwallex.airwallex_billing_retrieve_a_subscription '{"subscription_id":"example_subscription_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_retrieve_a_subscription '{"subscription_id":"example_subscription_id"}' --json

airwallex.airwallex_billing_update_a_subscription

Billing > Subscriptions > Update a Subscription. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/subscriptions/{subscription_id}/update.

Write write
Parameters
subscription_id, body
Generic call
kosmo integrations:call airwallex.airwallex_billing_update_a_subscription '{"subscription_id":"example_subscription_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_update_a_subscription '{"subscription_id":"example_subscription_id","body":"example_body"}' --json

airwallex.airwallex_billing_cancel_a_subscription

Billing > Subscriptions > Cancel a Subscription. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/subscriptions/{subscription_id}/cancel.

Write write
Parameters
subscription_id, body
Generic call
kosmo integrations:call airwallex.airwallex_billing_cancel_a_subscription '{"subscription_id":"example_subscription_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_cancel_a_subscription '{"subscription_id":"example_subscription_id","body":"example_body"}' --json

airwallex.airwallex_billing_get_list_of_subscriptions

Billing > Subscriptions > Get list of Subscriptions. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/subscriptions.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_billing_get_list_of_subscriptions '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_billing_get_list_of_subscriptions '{}' --json

airwallex.airwallex_issuing_get_authorization_status

Issuing > Authorizations > Get authorization status. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/authorizations.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_issuing_get_authorization_status '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_get_authorization_status '{}' --json

airwallex.airwallex_issuing_get_single_authorization_status

Issuing > Authorizations > Get single authorization status. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/authorizations/{issuing_transaction_id}.

Read read
Parameters
issuing_transaction_id
Generic call
kosmo integrations:call airwallex.airwallex_issuing_get_single_authorization_status '{"issuing_transaction_id":"example_issuing_transaction_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_get_single_authorization_status '{"issuing_transaction_id":"example_issuing_transaction_id"}' --json

airwallex.airwallex_issuing_create_a_cardholder

Issuing > Cardholders > Create a cardholder. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/cardholders/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_issuing_create_a_cardholder '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_create_a_cardholder '{"body":"example_body"}' --json

airwallex.airwallex_issuing_get_all_cardholders

Issuing > Cardholders > Get all cardholders. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cardholders.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_issuing_get_all_cardholders '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_get_all_cardholders '{}' --json

airwallex.airwallex_issuing_get_cardholder_details

Issuing > Cardholders > Get cardholder details. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cardholders/{cardholder_id}.

Read read
Parameters
cardholder_id
Generic call
kosmo integrations:call airwallex.airwallex_issuing_get_cardholder_details '{"cardholder_id":"example_cardholder_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_get_cardholder_details '{"cardholder_id":"example_cardholder_id"}' --json

airwallex.airwallex_issuing_update_a_cardholder

Issuing > Cardholders > Update a cardholder. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/cardholders/{cardholder_id}/update.

Write write
Parameters
cardholder_id, body
Generic call
kosmo integrations:call airwallex.airwallex_issuing_update_a_cardholder '{"cardholder_id":"example_cardholder_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_update_a_cardholder '{"cardholder_id":"example_cardholder_id","body":"example_body"}' --json

airwallex.airwallex_issuing_create_a_card

Issuing > Cards > Create a card. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/cards/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_issuing_create_a_card '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_create_a_card '{"body":"example_body"}' --json

airwallex.airwallex_issuing_get_all_cards

Issuing > Cards > Get all cards. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cards.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_issuing_get_all_cards '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_get_all_cards '{}' --json

airwallex.airwallex_issuing_get_sensitive_card_details

Issuing > Cards > Get sensitive card details. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cards/{card_id}/details.

Read read
Parameters
card_id
Generic call
kosmo integrations:call airwallex.airwallex_issuing_get_sensitive_card_details '{"card_id":"example_card_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_get_sensitive_card_details '{"card_id":"example_card_id"}' --json

airwallex.airwallex_issuing_activate_a_card

Issuing > Cards > Activate a card. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/cards/{card_id}/activate.

Write write
Parameters
card_id
Generic call
kosmo integrations:call airwallex.airwallex_issuing_activate_a_card '{"card_id":"example_card_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_activate_a_card '{"card_id":"example_card_id"}' --json

airwallex.airwallex_issuing_get_card_details

Issuing > Cards > Get card details. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cards/{card_id}.

Read read
Parameters
card_id
Generic call
kosmo integrations:call airwallex.airwallex_issuing_get_card_details '{"card_id":"example_card_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_get_card_details '{"card_id":"example_card_id"}' --json

airwallex.airwallex_issuing_get_card_remaining_limits

Issuing > Cards > Get card remaining limits. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/cards/{card_id}/limits.

Read read
Parameters
card_id
Generic call
kosmo integrations:call airwallex.airwallex_issuing_get_card_remaining_limits '{"card_id":"example_card_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_get_card_remaining_limits '{"card_id":"example_card_id"}' --json

airwallex.airwallex_issuing_update_a_card

Issuing > Cards > Update a card. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/cards/{card_id}/update.

Write write
Parameters
card_id, body
Generic call
kosmo integrations:call airwallex.airwallex_issuing_update_a_card '{"card_id":"example_card_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_update_a_card '{"card_id":"example_card_id","body":"example_body"}' --json

airwallex.airwallex_issuing_get_issuing_config

Issuing > Config > Get issuing config. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/config.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_issuing_get_issuing_config '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_get_issuing_config '{}' --json

airwallex.airwallex_issuing_update_issuing_config

Issuing > Config > Update issuing config. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/issuing/config/update.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_issuing_update_issuing_config '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_update_issuing_config '{"body":"example_body"}' --json

airwallex.airwallex_issuing_get_transactions

Issuing > Transactions > Get transactions. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/transactions.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_issuing_get_transactions '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_get_transactions '{}' --json

airwallex.airwallex_issuing_get_single_transaction

Issuing > Transactions > Get single transaction. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/issuing/transactions/{issuing_transaction_id}.

Read read
Parameters
issuing_transaction_id
Generic call
kosmo integrations:call airwallex.airwallex_issuing_get_single_transaction '{"issuing_transaction_id":"example_issuing_transaction_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_issuing_get_single_transaction '{"issuing_transaction_id":"example_issuing_transaction_id"}' --json

airwallex.airwallex_online_payments_retrieve_available_payment_method_types

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.

Read read
Parameters
active, country_code, transaction_currency, transaction_mode
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_retrieve_available_payment_method_types '{"active":"example_active","country_code":"example_country_code","transaction_currency":"example_transaction_currency","transaction_mode":"example_transaction_mode"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_retrieve_available_payment_method_types '{"active":"example_active","country_code":"example_country_code","transaction_currency":"example_transaction_currency","transaction_mode":"example_transaction_mode"}' --json

airwallex.airwallex_online_payments_retrieve_bank_names_for_certain_payment_method_types

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.

Read read
Parameters
payment_method_type, country_code
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_retrieve_bank_names_for_certain_payment_method_types '{"payment_method_type":"example_payment_method_type","country_code":"example_country_code"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_retrieve_bank_names_for_certain_payment_method_types '{"payment_method_type":"example_payment_method_type","country_code":"example_country_code"}' --json

airwallex.airwallex_online_payments_create_a_customer

Online Payments > Customers > Create a Customer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/customers/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_create_a_customer '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_create_a_customer '{"body":"example_body"}' --json

airwallex.airwallex_online_payments_retrieve_a_customer

Online Payments > Customers > Retrieve a Customer. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/customers/{customer_id}.

Read read
Parameters
customer_id
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_retrieve_a_customer '{"customer_id":"example_customer_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_retrieve_a_customer '{"customer_id":"example_customer_id"}' --json

airwallex.airwallex_online_payments_update_a_customer

Online Payments > Customers > Update a Customer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/customers/{customer_id}/update.

Write write
Parameters
customer_id, body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_update_a_customer '{"customer_id":"example_customer_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_update_a_customer '{"customer_id":"example_customer_id","body":"example_body"}' --json

airwallex.airwallex_online_payments_generate_a_client_secret_for_a_customer

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.

Read read
Parameters
customer_id
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_generate_a_client_secret_for_a_customer '{"customer_id":"example_customer_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_generate_a_client_secret_for_a_customer '{"customer_id":"example_customer_id"}' --json

airwallex.airwallex_online_payments_get_list_of_customers

Online Payments > Customers > Get list of Customers. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/customers.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_get_list_of_customers '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_get_list_of_customers '{}' --json

airwallex.airwallex_online_payments_create_a_customs_declaration

Online Payments > Customs Declarations > Create a customs declaration. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/customs_declarations/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_create_a_customs_declaration '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_create_a_customs_declaration '{"body":"example_body"}' --json

airwallex.airwallex_online_payments_create_a_fundssplit

Online Payments > Fund Splits > Create a FundsSplit. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/funds_splits/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_create_a_fundssplit '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_create_a_fundssplit '{"body":"example_body"}' --json

airwallex.airwallex_online_payments_retrieve_a_fundssplit

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}.

Read read
Parameters
fund_split_id
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_retrieve_a_fundssplit '{"fund_split_id":"example_fund_split_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_retrieve_a_fundssplit '{"fund_split_id":"example_fund_split_id"}' --json

airwallex.airwallex_online_payments_get_list_of_fundssplits

Online Payments > Fund Splits > Get list of FundsSplits. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/funds_splits.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_get_list_of_fundssplits '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_get_list_of_fundssplits '{}' --json

airwallex.airwallex_online_payments_release_a_fundssplit

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.

Read read
Parameters
fund_split_id, body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_release_a_fundssplit '{"fund_split_id":"example_fund_split_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_release_a_fundssplit '{"fund_split_id":"example_fund_split_id","body":"example_body"}' --json

airwallex.airwallex_online_payments_retrieve_a_paymentattempt_by_id

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}.

Read read
Parameters
payment_attempt_id
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_retrieve_a_paymentattempt_by_id '{"payment_attempt_id":"example_payment_attempt_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_retrieve_a_paymentattempt_by_id '{"payment_attempt_id":"example_payment_attempt_id"}' --json

airwallex.airwallex_online_payments_retrieve_list_of_paymentattempts

Online Payments > Payment Attempts > Retrieve list of PaymentAttempts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_attempts.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_retrieve_list_of_paymentattempts '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_retrieve_list_of_paymentattempts '{}' --json

airwallex.airwallex_online_payments_create_a_paymentconsent

Online Payments > Payment Consents > Create a PaymentConsent. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_consents/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_create_a_paymentconsent '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_create_a_paymentconsent '{"body":"example_body"}' --json

airwallex.airwallex_online_payments_update_a_paymentconsent

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.

Write write
Parameters
payment_consent_id, body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_update_a_paymentconsent '{"payment_consent_id":"example_payment_consent_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_update_a_paymentconsent '{"payment_consent_id":"example_payment_consent_id","body":"example_body"}' --json

airwallex.airwallex_online_payments_disable_a_paymentconsent

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.

Write write
Parameters
payment_consent_id, body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_disable_a_paymentconsent '{"payment_consent_id":"example_payment_consent_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_disable_a_paymentconsent '{"payment_consent_id":"example_payment_consent_id","body":"example_body"}' --json

airwallex.airwallex_online_payments_verify_a_paymentconsent_card

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.

Write write
Parameters
id, body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_verify_a_paymentconsent_card '{"id":"example_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_verify_a_paymentconsent_card '{"id":"example_id","body":"example_body"}' --json

airwallex.airwallex_online_payments_continue_to_verify_a_paymentconsent

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.

Write write
Parameters
payment_consent_id, body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_continue_to_verify_a_paymentconsent '{"payment_consent_id":"example_payment_consent_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_continue_to_verify_a_paymentconsent '{"payment_consent_id":"example_payment_consent_id","body":"example_body"}' --json

airwallex.airwallex_online_payments_get_a_paymentconsent

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}.

Read read
Parameters
payment_consent_id
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_get_a_paymentconsent '{"payment_consent_id":"example_payment_consent_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_get_a_paymentconsent '{"payment_consent_id":"example_payment_consent_id"}' --json

airwallex.airwallex_online_payments_get_list_of_paymentconsents

Online Payments > Payment Consents > Get list of PaymentConsents. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_consents.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_get_list_of_paymentconsents '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_get_list_of_paymentconsents '{}' --json

airwallex.airwallex_online_payments_create_a_paymentintent_mvp

Online Payments > Payment Intents > Create a PaymentIntent - MVP. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_intents/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_create_a_paymentintent_mvp '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_create_a_paymentintent_mvp '{"body":"example_body"}' --json

airwallex.airwallex_online_payments_retrieve_a_paymentintent

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}.

Read read
Parameters
payment_intent_id
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_retrieve_a_paymentintent '{"payment_intent_id":"example_payment_intent_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_retrieve_a_paymentintent '{"payment_intent_id":"example_payment_intent_id"}' --json

airwallex.airwallex_online_payments_confirm_a_paymentintent_payment_method_card

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.

Read read
Parameters
payment_intent_id, body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_confirm_a_paymentintent_payment_method_card '{"payment_intent_id":"example_payment_intent_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_confirm_a_paymentintent_payment_method_card '{"payment_intent_id":"example_payment_intent_id","body":"example_body"}' --json

airwallex.airwallex_online_payments_continue_to_confirm_a_paymentintent

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.

Read read
Parameters
payment_intent_id, body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_continue_to_confirm_a_paymentintent '{"payment_intent_id":"example_payment_intent_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_continue_to_confirm_a_paymentintent '{"payment_intent_id":"example_payment_intent_id","body":"example_body"}' --json

airwallex.airwallex_online_payments_capture_a_paymentintent

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.

Read read
Parameters
payment_intent_id, body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_capture_a_paymentintent '{"payment_intent_id":"example_payment_intent_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_capture_a_paymentintent '{"payment_intent_id":"example_payment_intent_id","body":"example_body"}' --json

airwallex.airwallex_online_payments_get_list_of_paymentintents

Online Payments > Payment Intents > Get list of PaymentIntents. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_intents.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_get_list_of_paymentintents '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_get_list_of_paymentintents '{}' --json

airwallex.airwallex_online_payments_create_a_paymentmethod

Online Payments > Payment Methods > Create a PaymentMethod. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/payment_methods/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_create_a_paymentmethod '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_create_a_paymentmethod '{"body":"example_body"}' --json

airwallex.airwallex_online_payments_retrieve_a_paymentmethod

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}.

Read read
Parameters
payment_method_id
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_retrieve_a_paymentmethod '{"payment_method_id":"example_payment_method_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_retrieve_a_paymentmethod '{"payment_method_id":"example_payment_method_id"}' --json

airwallex.airwallex_online_payments_update_a_paymentmethod

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.

Write write
Parameters
payment_method_id, body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_update_a_paymentmethod '{"payment_method_id":"example_payment_method_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_update_a_paymentmethod '{"payment_method_id":"example_payment_method_id","body":"example_body"}' --json

airwallex.airwallex_online_payments_get_list_of_paymentmethods

Online Payments > Payment Methods > Get list of PaymentMethods. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/payment_methods.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_get_list_of_paymentmethods '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_get_list_of_paymentmethods '{}' --json

airwallex.airwallex_online_payments_disable_a_paymentmethod

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.

Write write
Parameters
payment_method_id, body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_disable_a_paymentmethod '{"payment_method_id":"example_payment_method_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_disable_a_paymentmethod '{"payment_method_id":"example_payment_method_id","body":"example_body"}' --json

airwallex.airwallex_online_payments_create_a_refund

Online Payments > Refunds > Create a Refund. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/pa/refunds/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_create_a_refund '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_create_a_refund '{"body":"example_body"}' --json

airwallex.airwallex_online_payments_retrieve_a_refund

Online Payments > Refunds > Retrieve a Refund. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/refunds/{refund_id}.

Read read
Parameters
refund_id
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_retrieve_a_refund '{"refund_id":"example_refund_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_retrieve_a_refund '{"refund_id":"example_refund_id"}' --json

airwallex.airwallex_online_payments_get_list_of_refunds

Online Payments > Refunds > Get list of Refunds. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/refunds.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_online_payments_get_list_of_refunds '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_online_payments_get_list_of_refunds '{}' --json

airwallex.airwallex_payouts_get_list_of_beneficiaries

Payouts > Beneficiaries > Get list of beneficiaries. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/beneficiaries.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_payouts_get_list_of_beneficiaries '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_get_list_of_beneficiaries '{}' --json

airwallex.airwallex_payouts_get_a_beneficiary_by_id

Payouts > Beneficiaries > Get a beneficiary by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/beneficiaries/{beneficiary_id}.

Read read
Parameters
beneficiary_id
Generic call
kosmo integrations:call airwallex.airwallex_payouts_get_a_beneficiary_by_id '{"beneficiary_id":"example_beneficiary_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_get_a_beneficiary_by_id '{"beneficiary_id":"example_beneficiary_id"}' --json

airwallex.airwallex_payouts_create_a_new_beneficiary

Payouts > Beneficiaries > Create a new beneficiary. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiaries/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_payouts_create_a_new_beneficiary '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_create_a_new_beneficiary '{"body":"example_body"}' --json

airwallex.airwallex_payouts_update_existing_beneficiary

Payouts > Beneficiaries > Update existing beneficiary. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiaries/{beneficiary_id}/update.

Write write
Parameters
beneficiary_id, body
Generic call
kosmo integrations:call airwallex.airwallex_payouts_update_existing_beneficiary '{"beneficiary_id":"example_beneficiary_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_update_existing_beneficiary '{"beneficiary_id":"example_beneficiary_id","body":"example_body"}' --json

airwallex.airwallex_payouts_validate_beneficiary

Payouts > Beneficiaries > Validate beneficiary. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiaries/validate.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_payouts_validate_beneficiary '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_validate_beneficiary '{"body":"example_body"}' --json

airwallex.airwallex_payouts_delete_existing_beneficiary

Payouts > Beneficiaries > Delete existing beneficiary. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiaries/{id}/delete.

Write write
Parameters
id
Generic call
kosmo integrations:call airwallex.airwallex_payouts_delete_existing_beneficiary '{"id":"example_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_delete_existing_beneficiary '{"id":"example_id"}' --json

airwallex.airwallex_payouts_get_the_api_schema

Payouts > Beneficiaries > Get the API schema. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiary_api_schemas/generate.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_payouts_get_the_api_schema '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_get_the_api_schema '{"body":"example_body"}' --json

airwallex.airwallex_payouts_get_the_form_schema

Payouts > Beneficiaries > Get the form schema. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/beneficiary_form_schemas/generate.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_payouts_get_the_form_schema '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_get_the_form_schema '{"body":"example_body"}' --json

airwallex.airwallex_payouts_get_list_of_payers

Payouts > Payers > Get list of payers. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/payers.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_payouts_get_list_of_payers '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_get_list_of_payers '{}' --json

airwallex.airwallex_payouts_create_a_new_payer

Payouts > Payers > Create a new payer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/payers/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_payouts_create_a_new_payer '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_create_a_new_payer '{"body":"example_body"}' --json

airwallex.airwallex_payouts_get_a_payer_by_id

Payouts > Payers > Get a payer by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/payers/{payer_id}.

Read read
Parameters
payer_id
Generic call
kosmo integrations:call airwallex.airwallex_payouts_get_a_payer_by_id '{"payer_id":"example_payer_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_get_a_payer_by_id '{"payer_id":"example_payer_id"}' --json

airwallex.airwallex_payouts_update_existing_payer

Payouts > Payers > Update existing payer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/payers/{payer_id}/update.

Write write
Parameters
payer_id, body
Generic call
kosmo integrations:call airwallex.airwallex_payouts_update_existing_payer '{"payer_id":"example_payer_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_update_existing_payer '{"payer_id":"example_payer_id","body":"example_body"}' --json

airwallex.airwallex_payouts_validate_payer

Payouts > Payers > Validate payer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/payers/validate.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_payouts_validate_payer '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_validate_payer '{"body":"example_body"}' --json

airwallex.airwallex_payouts_delete_existing_payer

Payouts > Payers > Delete existing payer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/payers/{payer_id}/delete.

Write write
Parameters
payer_id
Generic call
kosmo integrations:call airwallex.airwallex_payouts_delete_existing_payer '{"payer_id":"example_payer_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_delete_existing_payer '{"payer_id":"example_payer_id"}' --json

airwallex.airwallex_payouts_create_a_new_transfer_to_beneficiary

Payouts > Transfers > Create a new transfer - to beneficiary. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/transfers/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_payouts_create_a_new_transfer_to_beneficiary '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_create_a_new_transfer_to_beneficiary '{"body":"example_body"}' --json

airwallex.airwallex_payouts_get_list_of_transfers

Payouts > Transfers > Get list of transfers. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/transfers.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_payouts_get_list_of_transfers '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_get_list_of_transfers '{}' --json

airwallex.airwallex_payouts_get_transfer_by_id

Payouts > Transfers > Get transfer by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/transfers/{transfer_id}.

Read read
Parameters
transfer_id
Generic call
kosmo integrations:call airwallex.airwallex_payouts_get_transfer_by_id '{"transfer_id":"example_transfer_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_get_transfer_by_id '{"transfer_id":"example_transfer_id"}' --json

airwallex.airwallex_payouts_validate_transfer

Payouts > Transfers > Validate transfer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/transfers/validate.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_payouts_validate_transfer '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_validate_transfer '{"body":"example_body"}' --json

airwallex.airwallex_payouts_cancel_a_transfer

Payouts > Transfers > Cancel a transfer. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/transfers/{transfer_id}/cancel.

Write write
Parameters
transfer_id
Generic call
kosmo integrations:call airwallex.airwallex_payouts_cancel_a_transfer '{"transfer_id":"example_transfer_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_payouts_cancel_a_transfer '{"transfer_id":"example_transfer_id"}' --json

airwallex.airwallex_reporting_create_a_financial_report

Reporting > Financial Reports > Create a financial report. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/finance/financial_reports/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_reporting_create_a_financial_report '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_reporting_create_a_financial_report '{"body":"example_body"}' --json

airwallex.airwallex_reporting_get_list_of_financial_reports

Reporting > Financial Reports > Get list of financial reports. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/finance/financial_reports.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_reporting_get_list_of_financial_reports '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_reporting_get_list_of_financial_reports '{}' --json

airwallex.airwallex_reporting_get_financial_report_by_id

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}.

Read read
Parameters
report_id
Generic call
kosmo integrations:call airwallex.airwallex_reporting_get_financial_report_by_id '{"report_id":"example_report_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_reporting_get_financial_report_by_id '{"report_id":"example_report_id"}' --json

airwallex.airwallex_reporting_get_contents_of_a_financial_report

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.

Read read
Parameters
report_id
Generic call
kosmo integrations:call airwallex.airwallex_reporting_get_contents_of_a_financial_report '{"report_id":"example_report_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_reporting_get_contents_of_a_financial_report '{"report_id":"example_report_id"}' --json

airwallex.airwallex_reporting_get_list_of_financial_transactions

Reporting > Financial Transactions > Get list of financial transactions. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/financial_transactions.

Read read
Parameters
page_size, to_created_at
Generic call
kosmo integrations:call airwallex.airwallex_reporting_get_list_of_financial_transactions '{"page_size":"example_page_size","to_created_at":"example_to_created_at"}' --json
Shortcut
kosmo integrations:airwallex airwallex_reporting_get_list_of_financial_transactions '{"page_size":"example_page_size","to_created_at":"example_to_created_at"}' --json

airwallex.airwallex_reporting_get_a_financial_transaction_by_id

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}.

Read read
Parameters
financial_transaction_id
Generic call
kosmo integrations:call airwallex.airwallex_reporting_get_a_financial_transaction_by_id '{"financial_transaction_id":"example_financial_transaction_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_reporting_get_a_financial_transaction_by_id '{"financial_transaction_id":"example_financial_transaction_id"}' --json

airwallex.airwallex_reporting_get_list_of_settlements

Reporting > Settlements > Get list of settlements. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/financial/settlements.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_reporting_get_list_of_settlements '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_reporting_get_list_of_settlements '{}' --json

airwallex.airwallex_reporting_get_a_settlement_by_id

Reporting > Settlements > Get a settlement by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/pa/financial/settlements/{settlement_id}.

Read read
Parameters
settlement_id
Generic call
kosmo integrations:call airwallex.airwallex_reporting_get_a_settlement_by_id '{"settlement_id":"example_settlement_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_reporting_get_a_settlement_by_id '{"settlement_id":"example_settlement_id"}' --json

airwallex.airwallex_reporting_get_a_settlement_report_by_id

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.

Read read
Parameters
settlement_id
Generic call
kosmo integrations:call airwallex.airwallex_reporting_get_a_settlement_report_by_id '{"settlement_id":"example_settlement_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_reporting_get_a_settlement_report_by_id '{"settlement_id":"example_settlement_id"}' --json

airwallex.airwallex_scale_create_an_account_invitation_link_oauth2

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.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_scale_create_an_account_invitation_link_oauth2 '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_create_an_account_invitation_link_oauth2 '{"body":"example_body"}' --json

airwallex.airwallex_scale_get_an_account_invitation_link_by_id

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}.

Read read
Parameters
invitation_link_id
Generic call
kosmo integrations:call airwallex.airwallex_scale_get_an_account_invitation_link_by_id '{"invitation_link_id":"example_invitation_link_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_get_an_account_invitation_link_by_id '{"invitation_link_id":"example_invitation_link_id"}' --json

airwallex.airwallex_scale_create_an_account_business

Scale > Accounts > Create an account - Business. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/accounts/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_scale_create_an_account_business '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_create_an_account_business '{"body":"example_body"}' --json

airwallex.airwallex_scale_update_a_connected_account

Scale > Accounts > Update a connected account. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/accounts/{connected_account_id}/update.

Write write
Parameters
connected_account_id, body
Generic call
kosmo integrations:call airwallex.airwallex_scale_update_a_connected_account '{"connected_account_id":"example_connected_account_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_update_a_connected_account '{"connected_account_id":"example_connected_account_id","body":"example_body"}' --json

airwallex.airwallex_scale_submit_account_for_activation

Scale > Accounts > Submit account for activation. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/accounts/{connected_account_id}/submit.

Write write
Parameters
connected_account_id
Generic call
kosmo integrations:call airwallex.airwallex_scale_submit_account_for_activation '{"connected_account_id":"example_connected_account_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_submit_account_for_activation '{"connected_account_id":"example_connected_account_id"}' --json

airwallex.airwallex_scale_agree_to_terms_and_conditions

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.

Read read
Parameters
connected_account_id
Generic call
kosmo integrations:call airwallex.airwallex_scale_agree_to_terms_and_conditions '{"connected_account_id":"example_connected_account_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_agree_to_terms_and_conditions '{"connected_account_id":"example_connected_account_id"}' --json

airwallex.airwallex_scale_get_account_by_id

Scale > Accounts > Get account by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/accounts/{connected_account_id}.

Read read
Parameters
connected_account_id
Generic call
kosmo integrations:call airwallex.airwallex_scale_get_account_by_id '{"connected_account_id":"example_connected_account_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_get_account_by_id '{"connected_account_id":"example_connected_account_id"}' --json

airwallex.airwallex_scale_get_list_of_connected_accounts

Scale > Accounts > Get list of connected accounts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/accounts.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_scale_get_list_of_connected_accounts '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_get_list_of_connected_accounts '{}' --json

airwallex.airwallex_scale_retrieve_account_details

Scale > Accounts > Retrieve account details. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/account.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_scale_retrieve_account_details '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_retrieve_account_details '{}' --json

airwallex.airwallex_scale_create_a_new_charge

Scale > Charges > Create a new charge. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/charges/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_scale_create_a_new_charge '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_create_a_new_charge '{"body":"example_body"}' --json

airwallex.airwallex_scale_get_list_of_charges

Scale > Charges > Get list of charges. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/charges.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_scale_get_list_of_charges '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_get_list_of_charges '{}' --json

airwallex.airwallex_scale_get_a_charge_by_id

Scale > Charges > Get a charge by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/charges/{charge_id}.

Read read
Parameters
charge_id
Generic call
kosmo integrations:call airwallex.airwallex_scale_get_a_charge_by_id '{"charge_id":"example_charge_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_get_a_charge_by_id '{"charge_id":"example_charge_id"}' --json

airwallex.airwallex_scale_create_flow

Scale > Hosted Flow > Create flow. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/hosted_flows/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_scale_create_flow '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_create_flow '{"body":"example_body"}' --json

airwallex.airwallex_scale_get_flow

Scale > Hosted Flow > Get flow. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/hosted_flows/{hosted_flow_instance_id}.

Read read
Parameters
hosted_flow_instance_id
Generic call
kosmo integrations:call airwallex.airwallex_scale_get_flow '{"hosted_flow_instance_id":"example_hosted_flow_instance_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_get_flow '{"hosted_flow_instance_id":"example_hosted_flow_instance_id"}' --json

airwallex.airwallex_scale_authorize_flow

Scale > Hosted Flow > Authorize flow. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/hosted_flows/{hosted_flow_instance_id}/authorize.

Read read
Parameters
hosted_flow_instance_id, body
Generic call
kosmo integrations:call airwallex.airwallex_scale_authorize_flow '{"hosted_flow_instance_id":"example_hosted_flow_instance_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_authorize_flow '{"hosted_flow_instance_id":"example_hosted_flow_instance_id","body":"example_body"}' --json

airwallex.airwallex_scale_create_a_new_connected_account_transfer

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.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_scale_create_a_new_connected_account_transfer '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_create_a_new_connected_account_transfer '{"body":"example_body"}' --json

airwallex.airwallex_scale_get_list_of_connected_account_transfers

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.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_scale_get_list_of_connected_account_transfers '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_get_list_of_connected_account_transfers '{}' --json

airwallex.airwallex_scale_get_a_connected_account_transfer_by_id

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}.

Read read
Parameters
transfer_id
Generic call
kosmo integrations:call airwallex.airwallex_scale_get_a_connected_account_transfer_by_id '{"transfer_id":"example_transfer_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_scale_get_a_connected_account_transfer_by_id '{"transfer_id":"example_transfer_id"}' --json

airwallex.airwallex_simulation_demo_only_update_status_of_connected_account

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.

Write write
Parameters
account_id, body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_update_status_of_connected_account '{"account_id":"example_account_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_update_status_of_connected_account '{"account_id":"example_account_id","body":"example_body"}' --json

airwallex.airwallex_simulation_demo_only_fail_next_autocharge

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.

Read read
Parameters
payment_source_id
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_fail_next_autocharge '{"payment_source_id":"example_payment_source_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_fail_next_autocharge '{"payment_source_id":"example_payment_source_id"}' --json

airwallex.airwallex_simulation_demo_only_create_a_global_account_deposit

Simulation (Demo Only) > Deposits > Create a global account deposit. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/deposit/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_create_a_global_account_deposit '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_create_a_global_account_deposit '{"body":"example_body"}' --json

airwallex.airwallex_simulation_demo_only_reject_a_direct_debit_deposit

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.

Read read
Parameters
deposit_id
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_reject_a_direct_debit_deposit '{"deposit_id":"example_deposit_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_reject_a_direct_debit_deposit '{"deposit_id":"example_deposit_id"}' --json

airwallex.airwallex_simulation_demo_only_reverse_a_direct_debit_deposit

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.

Read read
Parameters
deposit_id
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_reverse_a_direct_debit_deposit '{"deposit_id":"example_deposit_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_reverse_a_direct_debit_deposit '{"deposit_id":"example_deposit_id"}' --json

airwallex.airwallex_simulation_demo_only_settle_a_direct_debit_deposit

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.

Read read
Parameters
deposit_id
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_settle_a_direct_debit_deposit '{"deposit_id":"example_deposit_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_settle_a_direct_debit_deposit '{"deposit_id":"example_deposit_id"}' --json

airwallex.airwallex_simulation_demo_only_create_a_transaction_for_the_provided_card

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.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_create_a_transaction_for_the_provided_card '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_create_a_transaction_for_the_provided_card '{"body":"example_body"}' --json

airwallex.airwallex_simulation_demo_only_capture_the_transaction_with_the_provided_id

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.

Read read
Parameters
transaction_id, body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_capture_the_transaction_with_the_provided_id '{"transaction_id":"example_transaction_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_capture_the_transaction_with_the_provided_id '{"transaction_id":"example_transaction_id","body":"example_body"}' --json

airwallex.airwallex_simulation_demo_only_accept_a_mandate

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.

Read read
Parameters
linked_account_id
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_accept_a_mandate '{"linked_account_id":"example_linked_account_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_accept_a_mandate '{"linked_account_id":"example_linked_account_id"}' --json

airwallex.airwallex_simulation_demo_only_reject_a_mandate

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.

Read read
Parameters
linked_account_id
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_reject_a_mandate '{"linked_account_id":"example_linked_account_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_reject_a_mandate '{"linked_account_id":"example_linked_account_id"}' --json

airwallex.airwallex_simulation_demo_only_cancel_a_mandate

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.

Write write
Parameters
linked_account_id
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_cancel_a_mandate '{"linked_account_id":"example_linked_account_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_cancel_a_mandate '{"linked_account_id":"example_linked_account_id"}' --json

airwallex.airwallex_simulation_demo_only_fail_a_micro_deposits_verification

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.

Read read
Parameters
linked_account_id
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_fail_a_micro_deposits_verification '{"linked_account_id":"example_linked_account_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_fail_a_micro_deposits_verification '{"linked_account_id":"example_linked_account_id"}' --json

airwallex.airwallex_simulation_demo_only_create_a_paymentdispute

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.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_create_a_paymentdispute '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_create_a_paymentdispute '{"body":"example_body"}' --json

airwallex.airwallex_simulation_demo_only_resolve_a_paymentdispute

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.

Read read
Parameters
dispute_id, body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_resolve_a_paymentdispute '{"dispute_id":"example_dispute_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_resolve_a_paymentdispute '{"dispute_id":"example_dispute_id","body":"example_body"}' --json

airwallex.airwallex_simulation_demo_only_escalate_a_paymentdispute

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.

Read read
Parameters
dispute_id, body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_escalate_a_paymentdispute '{"dispute_id":"example_dispute_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_escalate_a_paymentdispute '{"dispute_id":"example_dispute_id","body":"example_body"}' --json

airwallex.airwallex_simulation_demo_only_simulate_a_shopper_action

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}.

Read read
Parameters
action, body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_simulate_a_shopper_action '{"action":"example_action","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_simulate_a_shopper_action '{"action":"example_action","body":"example_body"}' --json

airwallex.airwallex_simulation_demo_only_transition_payment_status

Simulation (Demo Only) > Payouts > Transition Payment Status. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/payments/{id}/transition.

Read read
Parameters
id, body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_transition_payment_status '{"id":"example_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_transition_payment_status '{"id":"example_id","body":"example_body"}' --json

airwallex.airwallex_simulation_demo_only_create_an_rfi

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.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_create_an_rfi '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_create_an_rfi '{"body":"example_body"}' --json

airwallex.airwallex_simulation_demo_only_follow_up_rfi

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.

Read read
Parameters
rfi_id, body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_follow_up_rfi '{"rfi_id":"example_rfi_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_follow_up_rfi '{"rfi_id":"example_rfi_id","body":"example_body"}' --json

airwallex.airwallex_simulation_demo_only_close_an_rfi

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.

Read read
Parameters
rfi_id
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_close_an_rfi '{"rfi_id":"example_rfi_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_close_an_rfi '{"rfi_id":"example_rfi_id"}' --json

airwallex.airwallex_simulation_demo_only_transition_transfer_status

Simulation (Demo Only) > Transfers > Transition Transfer Status. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/simulation/transfers/{transfer_id}/transition.

Read read
Parameters
transfer_id, body
Generic call
kosmo integrations:call airwallex.airwallex_simulation_demo_only_transition_transfer_status '{"transfer_id":"example_transfer_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_simulation_demo_only_transition_transfer_status '{"transfer_id":"example_transfer_id","body":"example_body"}' --json

airwallex.airwallex_supporting_services_upload_a_file

Supporting Services > File Service > Upload a file. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/files/upload.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_supporting_services_upload_a_file '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_supporting_services_upload_a_file '{"body":"example_body"}' --json

airwallex.airwallex_supporting_services_get_onboarding_file_download_links

Supporting Services > File Service > Get onboarding file download links. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/files/download_links.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_supporting_services_get_onboarding_file_download_links '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_supporting_services_get_onboarding_file_download_links '{"body":"example_body"}' --json

airwallex.airwallex_supporting_services_industry_categories

Supporting Services > Reference Data > Industry categories. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/reference/industry_categories.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_supporting_services_industry_categories '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_supporting_services_industry_categories '{}' --json

airwallex.airwallex_supporting_services_invalid_conversion_dates

Supporting Services > Reference Data > Invalid conversion dates. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/reference/invalid_conversion_dates.

Read read
Parameters
currency_pair
Generic call
kosmo integrations:call airwallex.airwallex_supporting_services_invalid_conversion_dates '{"currency_pair":"example_currency_pair"}' --json
Shortcut
kosmo integrations:airwallex airwallex_supporting_services_invalid_conversion_dates '{"currency_pair":"example_currency_pair"}' --json

airwallex.airwallex_supporting_services_settlement_accounts

Supporting Services > Reference Data > Settlement accounts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/reference/settlement_accounts.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_supporting_services_settlement_accounts '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_supporting_services_settlement_accounts '{}' --json

airwallex.airwallex_supporting_services_supported_currencies

Supporting Services > Reference Data > Supported currencies. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/reference/supported_currencies.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_supporting_services_supported_currencies '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_supporting_services_supported_currencies '{}' --json

airwallex.airwallex_transactional_fx_create_a_quote

Transactional FX > Quotes > Create a quote. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/fx/quotes/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_transactional_fx_create_a_quote '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_transactional_fx_create_a_quote '{"body":"example_body"}' --json

airwallex.airwallex_transactional_fx_create_a_conversion_buy_amount_based

Transactional FX > Conversion > Create a conversion - buy_amount based. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/fx/conversions/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_transactional_fx_create_a_conversion_buy_amount_based '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_transactional_fx_create_a_conversion_buy_amount_based '{"body":"example_body"}' --json

airwallex.airwallex_transactional_fx_retrieve_a_specific_conversion

Transactional FX > Conversion > Retrieve a specific conversion. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/fx/conversions/{conversion_id}.

Read read
Parameters
conversion_id
Generic call
kosmo integrations:call airwallex.airwallex_transactional_fx_retrieve_a_specific_conversion '{"conversion_id":"example_conversion_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_transactional_fx_retrieve_a_specific_conversion '{"conversion_id":"example_conversion_id"}' --json

airwallex.airwallex_transactional_fx_list_conversions

Transactional FX > Conversion > List conversions. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/fx/conversions.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_transactional_fx_list_conversions '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_transactional_fx_list_conversions '{}' --json

airwallex.airwallex_transactional_fx_create_an_amendment_quote

Transactional FX > Conversion Amendments > Create an amendment quote. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/fx/conversion_amendments/quote.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_transactional_fx_create_an_amendment_quote '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_transactional_fx_create_an_amendment_quote '{"body":"example_body"}' --json

airwallex.airwallex_transactional_fx_retrieve_a_current_rate

Transactional FX > Rates > Retrieve a current rate. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/fx/rates/current.

Read read
Parameters
buy_currency, sell_currency, buy_amount
Generic call
kosmo integrations:call airwallex.airwallex_transactional_fx_retrieve_a_current_rate '{"buy_currency":"example_buy_currency","sell_currency":"example_sell_currency","buy_amount":"example_buy_amount"}' --json
Shortcut
kosmo integrations:airwallex airwallex_transactional_fx_retrieve_a_current_rate '{"buy_currency":"example_buy_currency","sell_currency":"example_sell_currency","buy_amount":"example_buy_amount"}' --json

airwallex.airwallex_treasury_get_current_balances

Treasury > Balances > Get current balances. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/balances/current.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_treasury_get_current_balances '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_get_current_balances '{}' --json

airwallex.airwallex_treasury_get_balance_history

Treasury > Balances > Get balance history. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/balances/history.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_treasury_get_balance_history '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_get_balance_history '{}' --json

airwallex.airwallex_treasury_get_list_of_deposits

Treasury > Deposits > Get list of deposits. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/deposits.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_treasury_get_list_of_deposits '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_get_list_of_deposits '{}' --json

airwallex.airwallex_treasury_get_a_deposit_by_id

Treasury > Deposits > Get a deposit by ID. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/deposits/{deposit_id}.

Read read
Parameters
deposit_id
Generic call
kosmo integrations:call airwallex.airwallex_treasury_get_a_deposit_by_id '{"deposit_id":"example_deposit_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_get_a_deposit_by_id '{"deposit_id":"example_deposit_id"}' --json

airwallex.airwallex_treasury_create_a_deposit_via_direct_debit

Treasury > Deposits > Create a deposit via Direct Debit. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/deposits/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_treasury_create_a_deposit_via_direct_debit '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_create_a_deposit_via_direct_debit '{"body":"example_body"}' --json

airwallex.airwallex_treasury_open_a_global_account

Treasury > Global Accounts > Open a global account. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/global_accounts/create.

Read read
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_treasury_open_a_global_account '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_open_a_global_account '{"body":"example_body"}' --json

airwallex.airwallex_treasury_generate_global_account_statement_amazon

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.

Read read
Parameters
global_account_id, body
Generic call
kosmo integrations:call airwallex.airwallex_treasury_generate_global_account_statement_amazon '{"global_account_id":"example_global_account_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_generate_global_account_statement_amazon '{"global_account_id":"example_global_account_id","body":"example_body"}' --json

airwallex.airwallex_treasury_get_a_list_of_global_accounts

Treasury > Global Accounts > Get a list of global accounts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/global_accounts.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_treasury_get_a_list_of_global_accounts '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_get_a_list_of_global_accounts '{}' --json

airwallex.airwallex_treasury_get_global_account_by_id

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}.

Read read
Parameters
global_account_id
Generic call
kosmo integrations:call airwallex.airwallex_treasury_get_global_account_by_id '{"global_account_id":"example_global_account_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_get_global_account_by_id '{"global_account_id":"example_global_account_id"}' --json

airwallex.airwallex_treasury_get_global_account_transactions

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.

Read read
Parameters
global_account_id
Generic call
kosmo integrations:call airwallex.airwallex_treasury_get_global_account_transactions '{"global_account_id":"example_global_account_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_get_global_account_transactions '{"global_account_id":"example_global_account_id"}' --json

airwallex.airwallex_treasury_create_linked_bank_account

Treasury > Direct Debit LBA > Create Linked Bank Account. Maps to the official Airwallex public Postman collection endpoint POST /api/v1/linked_accounts/create.

Write write
Parameters
body
Generic call
kosmo integrations:call airwallex.airwallex_treasury_create_linked_bank_account '{"body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_create_linked_bank_account '{"body":"example_body"}' --json

airwallex.airwallex_treasury_verify_linked_account_with_micro_deposits

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.

Write write
Parameters
linked_account_id, body
Generic call
kosmo integrations:call airwallex.airwallex_treasury_verify_linked_account_with_micro_deposits '{"linked_account_id":"example_linked_account_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_verify_linked_account_with_micro_deposits '{"linked_account_id":"example_linked_account_id","body":"example_body"}' --json

airwallex.airwallex_treasury_get_linked_bank_accounts

Treasury > Direct Debit LBA > Get Linked Bank Accounts. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/linked_accounts.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_treasury_get_linked_bank_accounts '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_get_linked_bank_accounts '{}' --json

airwallex.airwallex_treasury_get_linked_bank_account_by_id

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}.

Read read
Parameters
linked_account_id
Generic call
kosmo integrations:call airwallex.airwallex_treasury_get_linked_bank_account_by_id '{"linked_account_id":"example_linked_account_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_get_linked_bank_account_by_id '{"linked_account_id":"example_linked_account_id"}' --json

airwallex.airwallex_treasury_update_mandate_for_lba

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.

Write write
Parameters
linked_account_id, body
Generic call
kosmo integrations:call airwallex.airwallex_treasury_update_mandate_for_lba '{"linked_account_id":"example_linked_account_id","body":"example_body"}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_update_mandate_for_lba '{"linked_account_id":"example_linked_account_id","body":"example_body"}' --json

airwallex.airwallex_treasury_get_mandate

Treasury > Direct Debit LBA > Get mandate. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/linked_accounts/{linked_account_id}/mandate.

Read read
Parameters
linked_account_id
Generic call
kosmo integrations:call airwallex.airwallex_treasury_get_mandate '{"linked_account_id":"example_linked_account_id"}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_get_mandate '{"linked_account_id":"example_linked_account_id"}' --json

airwallex.airwallex_treasury_funding_limits

Treasury > Direct Debit LBA > Funding limits. Maps to the official Airwallex public Postman collection endpoint GET /api/v1/account_capabilities/funding_limits.

Read read
Parameters
none
Generic call
kosmo integrations:call airwallex.airwallex_treasury_funding_limits '{}' --json
Shortcut
kosmo integrations:airwallex airwallex_treasury_funding_limits '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

airwallex.airwallex_authentication_obtain_access_token 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_authentication_obtain_access_token --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_billing_create_a_billing_customer 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_create_a_billing_customer --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_update_a_billing_customer 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_update_a_billing_customer --json
ParameterTypeRequiredDescription
billing_customer_id string yes Path parameter `billing_customer_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_retrieve_a_billing_customer 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_retrieve_a_billing_customer --json
ParameterTypeRequiredDescription
billing_customer_id string yes Path parameter `billing_customer_id`.
airwallex.airwallex_billing_get_list_of_blling_customers 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_list_of_blling_customers --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_billing_create_a_product 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_create_a_product --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_update_a_product 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_update_a_product --json
ParameterTypeRequiredDescription
product_id string yes Path parameter `product_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_retrieve_a_product 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_retrieve_a_product --json
ParameterTypeRequiredDescription
product_id string yes Path parameter `product_id`.
airwallex.airwallex_billing_get_list_of_products 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_list_of_products --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_billing_create_a_price_per_unit_one_off 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_create_a_price_per_unit_one_off --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_update_a_price 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_update_a_price --json
ParameterTypeRequiredDescription
price_id string yes Path parameter `price_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_retrieve_a_price 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_retrieve_a_price --json
ParameterTypeRequiredDescription
price_id string yes Path parameter `price_id`.
airwallex.airwallex_billing_get_list_of_prices 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_list_of_prices --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_billing_create_a_billing_checkout_payment 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_create_a_billing_checkout_payment --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_update_a_billing_checkout 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_update_a_billing_checkout --json
ParameterTypeRequiredDescription
billing_checkout_id string yes Path parameter `billing_checkout_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_retrieve_a_billing_checkout 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_retrieve_a_billing_checkout --json
ParameterTypeRequiredDescription
billing_checkout_id string yes Path parameter `billing_checkout_id`.
airwallex.airwallex_billing_get_list_of_billing_checkouts 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_list_of_billing_checkouts --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_billing_cancel_a_billing_checkout 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_cancel_a_billing_checkout --json
ParameterTypeRequiredDescription
billing_checkout_id string yes Path parameter `billing_checkout_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_create_an_invoice 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_create_an_invoice --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_preview_an_invoice 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_preview_an_invoice --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_update_an_invoice 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_update_an_invoice --json
ParameterTypeRequiredDescription
invoice_id string yes Path parameter `invoice_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_delete_a_draft_invoice 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_delete_a_draft_invoice --json
ParameterTypeRequiredDescription
invoice_id string yes Path parameter `invoice_id`.
airwallex.airwallex_billing_retrieve_an_invoice 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_retrieve_an_invoice --json
ParameterTypeRequiredDescription
invoice_id string yes Path parameter `invoice_id`.
airwallex.airwallex_billing_get_list_of_invoices 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_list_of_invoices --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_billing_finalize_an_invoice 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_finalize_an_invoice --json
ParameterTypeRequiredDescription
invoice_id string yes Path parameter `invoice_id`.
airwallex.airwallex_billing_mark_an_invoice_as_paid 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_mark_an_invoice_as_paid --json
ParameterTypeRequiredDescription
invoice_id string yes Path parameter `invoice_id`.
airwallex.airwallex_billing_void_an_invoice 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_void_an_invoice --json
ParameterTypeRequiredDescription
invoice_id string yes Path parameter `invoice_id`.
airwallex.airwallex_billing_create_invoice_line_items_and_add_them_to_an_invoice 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_create_invoice_line_items_and_add_them_to_an_invoice --json
ParameterTypeRequiredDescription
invoice_id string yes Path parameter `invoice_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_get_list_of_invoices_line_items 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_list_of_invoices_line_items --json
ParameterTypeRequiredDescription
invoice_id string yes Path parameter `invoice_id`.
airwallex.airwallex_billing_get_a_billing_transaction 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_a_billing_transaction --json
ParameterTypeRequiredDescription
billing_transaction_id string yes Path parameter `billing_transaction_id`.
airwallex.airwallex_billing_get_a_list_of_billing_transactions 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_a_list_of_billing_transactions --json
ParameterTypeRequiredDescription
invoice_id string no Query parameter `invoice_id`.
airwallex.airwallex_billing_create_a_coupon 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_create_a_coupon --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_update_a_coupon 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_update_a_coupon --json
ParameterTypeRequiredDescription
coupon_id string yes Path parameter `coupon_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_get_a_coupon 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_a_coupon --json
ParameterTypeRequiredDescription
coupon_id string yes Path parameter `coupon_id`.
airwallex.airwallex_billing_get_list_of_coupons 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_list_of_coupons --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_billing_create_a_payment_source 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_create_a_payment_source --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_get_a_payment_source 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_a_payment_source --json
ParameterTypeRequiredDescription
payment_source_id string yes Path parameter `payment_source_id`.
airwallex.airwallex_billing_get_list_of_payment_sources 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_list_of_payment_sources --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_billing_create_a_meter 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_create_a_meter --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_update_a_meter 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_update_a_meter --json
ParameterTypeRequiredDescription
meter_id string yes Path parameter `meter_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_retrieve_a_meter 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_retrieve_a_meter --json
ParameterTypeRequiredDescription
meter_id string yes Path parameter `meter_id`.
airwallex.airwallex_billing_archive_a_meter 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_archive_a_meter --json
ParameterTypeRequiredDescription
meter_id string yes Path parameter `meter_id`.
airwallex.airwallex_billing_restore_a_meter 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_restore_a_meter --json
ParameterTypeRequiredDescription
meter_id string yes Path parameter `meter_id`.
airwallex.airwallex_billing_get_list_of_meters 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_list_of_meters --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_billing_get_summaries_of_a_meter 4 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_summaries_of_a_meter --json
ParameterTypeRequiredDescription
meter_id string yes Path parameter `meter_id`.
billing_customer_id string no Query parameter `billing_customer_id`.
from_happened_at string no Query parameter `from_happened_at`.
to_happened_at string no Query parameter `to_happened_at`.
airwallex.airwallex_billing_ingest_a_usage_event 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_ingest_a_usage_event --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_batch_ingest_usage_events 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_batch_ingest_usage_events --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_void_a_usage_event 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_void_a_usage_event --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_create_a_subscription_checkout 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_create_a_subscription_checkout --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_retrieve_a_subscription 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_retrieve_a_subscription --json
ParameterTypeRequiredDescription
subscription_id string yes Path parameter `subscription_id`.
airwallex.airwallex_billing_update_a_subscription 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_update_a_subscription --json
ParameterTypeRequiredDescription
subscription_id string yes Path parameter `subscription_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_cancel_a_subscription 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_cancel_a_subscription --json
ParameterTypeRequiredDescription
subscription_id string yes Path parameter `subscription_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_billing_get_list_of_subscriptions 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_billing_get_list_of_subscriptions --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_issuing_get_authorization_status 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_get_authorization_status --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_issuing_get_single_authorization_status 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_get_single_authorization_status --json
ParameterTypeRequiredDescription
issuing_transaction_id string yes Path parameter `issuing_transaction_id`.
airwallex.airwallex_issuing_create_a_cardholder 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_create_a_cardholder --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_issuing_get_all_cardholders 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_get_all_cardholders --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_issuing_get_cardholder_details 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_get_cardholder_details --json
ParameterTypeRequiredDescription
cardholder_id string yes Path parameter `cardholder_id`.
airwallex.airwallex_issuing_update_a_cardholder 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_update_a_cardholder --json
ParameterTypeRequiredDescription
cardholder_id string yes Path parameter `cardholder_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_issuing_create_a_card 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_create_a_card --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_issuing_get_all_cards 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_get_all_cards --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_issuing_get_sensitive_card_details 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_get_sensitive_card_details --json
ParameterTypeRequiredDescription
card_id string yes Path parameter `card_id`.
airwallex.airwallex_issuing_activate_a_card 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_activate_a_card --json
ParameterTypeRequiredDescription
card_id string yes Path parameter `card_id`.
airwallex.airwallex_issuing_get_card_details 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_get_card_details --json
ParameterTypeRequiredDescription
card_id string yes Path parameter `card_id`.
airwallex.airwallex_issuing_get_card_remaining_limits 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_get_card_remaining_limits --json
ParameterTypeRequiredDescription
card_id string yes Path parameter `card_id`.
airwallex.airwallex_issuing_update_a_card 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_update_a_card --json
ParameterTypeRequiredDescription
card_id string yes Path parameter `card_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_issuing_get_issuing_config 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_get_issuing_config --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_issuing_update_issuing_config 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_update_issuing_config --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_issuing_get_transactions 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_get_transactions --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_issuing_get_single_transaction 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_issuing_get_single_transaction --json
ParameterTypeRequiredDescription
issuing_transaction_id string yes Path parameter `issuing_transaction_id`.
airwallex.airwallex_online_payments_retrieve_available_payment_method_types 4 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_retrieve_available_payment_method_types --json
ParameterTypeRequiredDescription
active string no Indicate whether the payment method type is active
country_code string no The supported country code.
transaction_currency string no The supported transaction currency. transaction_currency is required when country_code is given.
transaction_mode string no The supported transaction mode. One of oneoff, recurring.
airwallex.airwallex_online_payments_retrieve_bank_names_for_certain_payment_method_types 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_retrieve_bank_names_for_certain_payment_method_types --json
ParameterTypeRequiredDescription
payment_method_type string no The payment method type to find the available banks. One of fpx, bank_transfer, online_banking. For other payment methods that does not require bank_name, an empty list will be returned.
country_code string no Country code to filter the available banks. Use the two-character ISO Standard Country Codes. For payment method type like online_banking and bank_transfer, the available bank list differs in different countries and country_code is needed to get the bank list. For other payment method types, country_code will be ignored.
airwallex.airwallex_online_payments_create_a_customer 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_create_a_customer --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_retrieve_a_customer 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_retrieve_a_customer --json
ParameterTypeRequiredDescription
customer_id string yes Path parameter `customer_id`.
airwallex.airwallex_online_payments_update_a_customer 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_update_a_customer --json
ParameterTypeRequiredDescription
customer_id string yes Path parameter `customer_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_generate_a_client_secret_for_a_customer 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_generate_a_client_secret_for_a_customer --json
ParameterTypeRequiredDescription
customer_id string yes Path parameter `customer_id`.
airwallex.airwallex_online_payments_get_list_of_customers 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_get_list_of_customers --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_online_payments_create_a_customs_declaration 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_create_a_customs_declaration --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_create_a_fundssplit 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_create_a_fundssplit --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_retrieve_a_fundssplit 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_retrieve_a_fundssplit --json
ParameterTypeRequiredDescription
fund_split_id string yes Path parameter `fund_split_id`.
airwallex.airwallex_online_payments_get_list_of_fundssplits 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_get_list_of_fundssplits --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_online_payments_release_a_fundssplit 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_release_a_fundssplit --json
ParameterTypeRequiredDescription
fund_split_id string yes Path parameter `fund_split_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_retrieve_a_paymentattempt_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_retrieve_a_paymentattempt_by_id --json
ParameterTypeRequiredDescription
payment_attempt_id string yes Path parameter `payment_attempt_id`.
airwallex.airwallex_online_payments_retrieve_list_of_paymentattempts 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_retrieve_list_of_paymentattempts --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_online_payments_create_a_paymentconsent 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_create_a_paymentconsent --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_update_a_paymentconsent 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_update_a_paymentconsent --json
ParameterTypeRequiredDescription
payment_consent_id string yes Path parameter `payment_consent_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_disable_a_paymentconsent 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_disable_a_paymentconsent --json
ParameterTypeRequiredDescription
payment_consent_id string yes Path parameter `payment_consent_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_verify_a_paymentconsent_card 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_verify_a_paymentconsent_card --json
ParameterTypeRequiredDescription
id string yes Path parameter `id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_continue_to_verify_a_paymentconsent 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_continue_to_verify_a_paymentconsent --json
ParameterTypeRequiredDescription
payment_consent_id string yes Path parameter `payment_consent_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_get_a_paymentconsent 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_get_a_paymentconsent --json
ParameterTypeRequiredDescription
payment_consent_id string yes Path parameter `payment_consent_id`.
airwallex.airwallex_online_payments_get_list_of_paymentconsents 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_get_list_of_paymentconsents --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_online_payments_create_a_paymentintent_mvp 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_create_a_paymentintent_mvp --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_retrieve_a_paymentintent 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_retrieve_a_paymentintent --json
ParameterTypeRequiredDescription
payment_intent_id string yes Path parameter `payment_intent_id`.
airwallex.airwallex_online_payments_confirm_a_paymentintent_payment_method_card 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_confirm_a_paymentintent_payment_method_card --json
ParameterTypeRequiredDescription
payment_intent_id string yes Path parameter `payment_intent_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_continue_to_confirm_a_paymentintent 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_continue_to_confirm_a_paymentintent --json
ParameterTypeRequiredDescription
payment_intent_id string yes Path parameter `payment_intent_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_capture_a_paymentintent 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_capture_a_paymentintent --json
ParameterTypeRequiredDescription
payment_intent_id string yes Path parameter `payment_intent_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_get_list_of_paymentintents 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_get_list_of_paymentintents --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_online_payments_create_a_paymentmethod 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_create_a_paymentmethod --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_retrieve_a_paymentmethod 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_retrieve_a_paymentmethod --json
ParameterTypeRequiredDescription
payment_method_id string yes Path parameter `payment_method_id`.
airwallex.airwallex_online_payments_update_a_paymentmethod 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_update_a_paymentmethod --json
ParameterTypeRequiredDescription
payment_method_id string yes Path parameter `payment_method_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_get_list_of_paymentmethods 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_get_list_of_paymentmethods --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_online_payments_disable_a_paymentmethod 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_disable_a_paymentmethod --json
ParameterTypeRequiredDescription
payment_method_id string yes Path parameter `payment_method_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_create_a_refund 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_create_a_refund --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_online_payments_retrieve_a_refund 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_retrieve_a_refund --json
ParameterTypeRequiredDescription
refund_id string yes Path parameter `refund_id`.
airwallex.airwallex_online_payments_get_list_of_refunds 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_online_payments_get_list_of_refunds --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_payouts_get_list_of_beneficiaries 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_get_list_of_beneficiaries --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_payouts_get_a_beneficiary_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_get_a_beneficiary_by_id --json
ParameterTypeRequiredDescription
beneficiary_id string yes Path parameter `beneficiary_id`.
airwallex.airwallex_payouts_create_a_new_beneficiary 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_create_a_new_beneficiary --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_payouts_update_existing_beneficiary 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_update_existing_beneficiary --json
ParameterTypeRequiredDescription
beneficiary_id string yes Path parameter `beneficiary_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_payouts_validate_beneficiary 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_validate_beneficiary --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_payouts_delete_existing_beneficiary 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_delete_existing_beneficiary --json
ParameterTypeRequiredDescription
id string yes Path parameter `id`.
airwallex.airwallex_payouts_get_the_api_schema 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_get_the_api_schema --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_payouts_get_the_form_schema 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_get_the_form_schema --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_payouts_get_list_of_payers 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_get_list_of_payers --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_payouts_create_a_new_payer 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_create_a_new_payer --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_payouts_get_a_payer_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_get_a_payer_by_id --json
ParameterTypeRequiredDescription
payer_id string yes Path parameter `payer_id`.
airwallex.airwallex_payouts_update_existing_payer 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_update_existing_payer --json
ParameterTypeRequiredDescription
payer_id string yes Path parameter `payer_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_payouts_validate_payer 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_validate_payer --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_payouts_delete_existing_payer 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_delete_existing_payer --json
ParameterTypeRequiredDescription
payer_id string yes Path parameter `payer_id`.
airwallex.airwallex_payouts_create_a_new_transfer_to_beneficiary 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_create_a_new_transfer_to_beneficiary --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_payouts_get_list_of_transfers 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_get_list_of_transfers --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_payouts_get_transfer_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_get_transfer_by_id --json
ParameterTypeRequiredDescription
transfer_id string yes Path parameter `transfer_id`.
airwallex.airwallex_payouts_validate_transfer 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_validate_transfer --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_payouts_cancel_a_transfer 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_payouts_cancel_a_transfer --json
ParameterTypeRequiredDescription
transfer_id string yes Path parameter `transfer_id`.
airwallex.airwallex_reporting_create_a_financial_report 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_reporting_create_a_financial_report --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_reporting_get_list_of_financial_reports 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_reporting_get_list_of_financial_reports --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_reporting_get_financial_report_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_reporting_get_financial_report_by_id --json
ParameterTypeRequiredDescription
report_id string yes Path parameter `report_id`.
airwallex.airwallex_reporting_get_contents_of_a_financial_report 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_reporting_get_contents_of_a_financial_report --json
ParameterTypeRequiredDescription
report_id string yes Path parameter `report_id`.
airwallex.airwallex_reporting_get_list_of_financial_transactions 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_reporting_get_list_of_financial_transactions --json
ParameterTypeRequiredDescription
page_size string no Number of results per page, default is 100, max is 1000
to_created_at string no The end time of created_at in ISO8601 format (inclusive)
airwallex.airwallex_reporting_get_a_financial_transaction_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_reporting_get_a_financial_transaction_by_id --json
ParameterTypeRequiredDescription
financial_transaction_id string yes Path parameter `financial_transaction_id`.
airwallex.airwallex_reporting_get_list_of_settlements 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_reporting_get_list_of_settlements --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_reporting_get_a_settlement_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_reporting_get_a_settlement_by_id --json
ParameterTypeRequiredDescription
settlement_id string yes Path parameter `settlement_id`.
airwallex.airwallex_reporting_get_a_settlement_report_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_reporting_get_a_settlement_report_by_id --json
ParameterTypeRequiredDescription
settlement_id string yes Path parameter `settlement_id`.
airwallex.airwallex_scale_create_an_account_business 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_create_an_account_business --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_scale_update_a_connected_account 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_update_a_connected_account --json
ParameterTypeRequiredDescription
connected_account_id string yes Path parameter `connected_account_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_scale_submit_account_for_activation 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_submit_account_for_activation --json
ParameterTypeRequiredDescription
connected_account_id string yes Path parameter `connected_account_id`.
airwallex.airwallex_scale_agree_to_terms_and_conditions 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_agree_to_terms_and_conditions --json
ParameterTypeRequiredDescription
connected_account_id string yes Path parameter `connected_account_id`.
airwallex.airwallex_scale_get_account_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_get_account_by_id --json
ParameterTypeRequiredDescription
connected_account_id string yes Path parameter `connected_account_id`.
airwallex.airwallex_scale_get_list_of_connected_accounts 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_get_list_of_connected_accounts --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_scale_retrieve_account_details 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_retrieve_account_details --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_scale_create_a_new_charge 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_create_a_new_charge --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_scale_get_list_of_charges 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_get_list_of_charges --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_scale_get_a_charge_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_get_a_charge_by_id --json
ParameterTypeRequiredDescription
charge_id string yes Path parameter `charge_id`.
airwallex.airwallex_scale_create_flow 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_create_flow --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_scale_get_flow 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_get_flow --json
ParameterTypeRequiredDescription
hosted_flow_instance_id string yes Path parameter `hosted_flow_instance_id`.
airwallex.airwallex_scale_authorize_flow 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_authorize_flow --json
ParameterTypeRequiredDescription
hosted_flow_instance_id string yes Path parameter `hosted_flow_instance_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_scale_create_a_new_connected_account_transfer 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_create_a_new_connected_account_transfer --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_scale_get_list_of_connected_account_transfers 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_get_list_of_connected_account_transfers --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_scale_get_a_connected_account_transfer_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_scale_get_a_connected_account_transfer_by_id --json
ParameterTypeRequiredDescription
transfer_id string yes Path parameter `transfer_id`.
airwallex.airwallex_simulation_demo_only_update_status_of_connected_account 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_update_status_of_connected_account --json
ParameterTypeRequiredDescription
account_id string yes Path parameter `account_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_simulation_demo_only_fail_next_autocharge 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_fail_next_autocharge --json
ParameterTypeRequiredDescription
payment_source_id string yes Path parameter `payment_source_id`.
airwallex.airwallex_simulation_demo_only_create_a_global_account_deposit 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_create_a_global_account_deposit --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_simulation_demo_only_reject_a_direct_debit_deposit 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_reject_a_direct_debit_deposit --json
ParameterTypeRequiredDescription
deposit_id string yes Path parameter `deposit_id`.
airwallex.airwallex_simulation_demo_only_reverse_a_direct_debit_deposit 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_reverse_a_direct_debit_deposit --json
ParameterTypeRequiredDescription
deposit_id string yes Path parameter `deposit_id`.
airwallex.airwallex_simulation_demo_only_settle_a_direct_debit_deposit 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_settle_a_direct_debit_deposit --json
ParameterTypeRequiredDescription
deposit_id string yes Path parameter `deposit_id`.
airwallex.airwallex_simulation_demo_only_create_a_transaction_for_the_provided_card 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_create_a_transaction_for_the_provided_card --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_simulation_demo_only_capture_the_transaction_with_the_provided_id 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_capture_the_transaction_with_the_provided_id --json
ParameterTypeRequiredDescription
transaction_id string yes Path parameter `transaction_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_simulation_demo_only_accept_a_mandate 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_accept_a_mandate --json
ParameterTypeRequiredDescription
linked_account_id string yes Path parameter `linked_account_id`.
airwallex.airwallex_simulation_demo_only_reject_a_mandate 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_reject_a_mandate --json
ParameterTypeRequiredDescription
linked_account_id string yes Path parameter `linked_account_id`.
airwallex.airwallex_simulation_demo_only_cancel_a_mandate 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_cancel_a_mandate --json
ParameterTypeRequiredDescription
linked_account_id string yes Path parameter `linked_account_id`.
airwallex.airwallex_simulation_demo_only_fail_a_micro_deposits_verification 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_fail_a_micro_deposits_verification --json
ParameterTypeRequiredDescription
linked_account_id string yes Path parameter `linked_account_id`.
airwallex.airwallex_simulation_demo_only_create_a_paymentdispute 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_create_a_paymentdispute --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_simulation_demo_only_resolve_a_paymentdispute 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_resolve_a_paymentdispute --json
ParameterTypeRequiredDescription
dispute_id string yes Path parameter `dispute_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_simulation_demo_only_escalate_a_paymentdispute 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_escalate_a_paymentdispute --json
ParameterTypeRequiredDescription
dispute_id string yes Path parameter `dispute_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_simulation_demo_only_simulate_a_shopper_action 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_simulate_a_shopper_action --json
ParameterTypeRequiredDescription
action string yes Path parameter `action`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_simulation_demo_only_transition_payment_status 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_transition_payment_status --json
ParameterTypeRequiredDescription
id string yes Path parameter `id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_simulation_demo_only_create_an_rfi 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_create_an_rfi --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_simulation_demo_only_follow_up_rfi 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_follow_up_rfi --json
ParameterTypeRequiredDescription
rfi_id string yes Path parameter `rfi_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_simulation_demo_only_close_an_rfi 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_close_an_rfi --json
ParameterTypeRequiredDescription
rfi_id string yes Path parameter `rfi_id`.
airwallex.airwallex_simulation_demo_only_transition_transfer_status 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_simulation_demo_only_transition_transfer_status --json
ParameterTypeRequiredDescription
transfer_id string yes Path parameter `transfer_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_supporting_services_upload_a_file 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_supporting_services_upload_a_file --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_supporting_services_industry_categories 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_supporting_services_industry_categories --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_supporting_services_invalid_conversion_dates 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_supporting_services_invalid_conversion_dates --json
ParameterTypeRequiredDescription
currency_pair string no Currency pair to get the invalid conversion dates for
airwallex.airwallex_supporting_services_settlement_accounts 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_supporting_services_settlement_accounts --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_supporting_services_supported_currencies 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_supporting_services_supported_currencies --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_transactional_fx_create_a_quote 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_transactional_fx_create_a_quote --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_transactional_fx_create_a_conversion_buy_amount_based 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_transactional_fx_create_a_conversion_buy_amount_based --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_transactional_fx_retrieve_a_specific_conversion 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_transactional_fx_retrieve_a_specific_conversion --json
ParameterTypeRequiredDescription
conversion_id string yes Path parameter `conversion_id`.
airwallex.airwallex_transactional_fx_list_conversions 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_transactional_fx_list_conversions --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_transactional_fx_create_an_amendment_quote 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_transactional_fx_create_an_amendment_quote --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_transactional_fx_retrieve_a_current_rate 3 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_transactional_fx_retrieve_a_current_rate --json
ParameterTypeRequiredDescription
buy_currency string no Currency (3-letter ISO-4217 code) the client buys
sell_currency string no Currency (3-letter ISO-4217 code) the client sells. This is the currency you will need to send us by the settlement cutoff time
buy_amount string no Amount the client buys in buy_currency (must be blank if sell_amount is specified)
airwallex.airwallex_treasury_get_current_balances 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_get_current_balances --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_treasury_get_balance_history 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_get_balance_history --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_treasury_get_list_of_deposits 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_get_list_of_deposits --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_treasury_get_a_deposit_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_get_a_deposit_by_id --json
ParameterTypeRequiredDescription
deposit_id string yes Path parameter `deposit_id`.
airwallex.airwallex_treasury_create_a_deposit_via_direct_debit 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_create_a_deposit_via_direct_debit --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_treasury_open_a_global_account 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_open_a_global_account --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_treasury_generate_global_account_statement_amazon 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_generate_global_account_statement_amazon --json
ParameterTypeRequiredDescription
global_account_id string yes Path parameter `global_account_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_treasury_get_a_list_of_global_accounts 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_get_a_list_of_global_accounts --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_treasury_get_global_account_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_get_global_account_by_id --json
ParameterTypeRequiredDescription
global_account_id string yes Path parameter `global_account_id`.
airwallex.airwallex_treasury_get_global_account_transactions 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_get_global_account_transactions --json
ParameterTypeRequiredDescription
global_account_id string yes Path parameter `global_account_id`.
airwallex.airwallex_treasury_create_linked_bank_account 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_create_linked_bank_account --json
ParameterTypeRequiredDescription
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_treasury_verify_linked_account_with_micro_deposits 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_verify_linked_account_with_micro_deposits --json
ParameterTypeRequiredDescription
linked_account_id string yes Path parameter `linked_account_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_treasury_get_linked_bank_accounts 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_get_linked_bank_accounts --json
ParameterTypeRequiredDescription
No parameters.
airwallex.airwallex_treasury_get_linked_bank_account_by_id 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_get_linked_bank_account_by_id --json
ParameterTypeRequiredDescription
linked_account_id string yes Path parameter `linked_account_id`.
airwallex.airwallex_treasury_update_mandate_for_lba 2 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_update_mandate_for_lba --json
ParameterTypeRequiredDescription
linked_account_id string yes Path parameter `linked_account_id`.
body object yes Request body fields matching the Airwallex API request example for this endpoint.
airwallex.airwallex_treasury_get_mandate 1 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_get_mandate --json
ParameterTypeRequiredDescription
linked_account_id string yes Path parameter `linked_account_id`.
airwallex.airwallex_treasury_funding_limits 0 parameters
Schema command
kosmo integrations:schema airwallex.airwallex_treasury_funding_limits --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.