data
Adyen Lua API for KosmoKrator Agents
Agent-facing Lua documentation and function reference for the Adyen KosmoKrator integration.Lua Namespace
Agents call this integration through app.integrations.adyen.*.
Use lua_read_doc("integrations.adyen") inside KosmoKrator to discover the same reference at runtime.
Call Lua from the Headless CLI
Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic
Adyen workflow without starting an interactive agent session.
kosmo integrations:lua --eval 'dump(app.integrations.adyen.get_apple_pay_session({}))' --json kosmo integrations:lua --eval 'print(docs.read("adyen"))' --json
kosmo integrations:lua --eval 'print(docs.read("adyen.get_apple_pay_session"))' --json Workflow file
Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.
local adyen = app.integrations.adyen
local result = adyen.get_apple_pay_session({})
dump(result) kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json integrations:lua exposes app.integrations.adyen, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.adyen.default.* or app.integrations.adyen.work.* when you configured named credential accounts.
MCP-only Lua
If the script only needs configured MCP servers and does not need Adyen, use the narrower mcp:lua command.
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json Agent-Facing Lua Docs
This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.
Adyen Integration
Adyen exposes official Checkout v72 and Management v3 operations generated from Adyen/adyen-openapi.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
api_key | secret | Yes | Adyen API key sent as X-API-Key. |
merchant_account | text | No | Default merchant account or merchant ID. Used for Checkout merchantAccount, Management merchantId path parameters, and Management merchantId query parameters when omitted. |
company_id | text | No | Default company ID for company-scoped Management API paths. |
url | url | No | Checkout API base URL without version. Test default is https://checkout-test.adyen.com. Live URLs must use the Adyen live prefix URL without the version suffix. |
management_url | url | No | Management API base URL without version. Test default is https://management-test.adyen.com. |
Usage Pattern
Tool names are generated from the official service and operation ID:
adyen_checkout_post_paymentsadyen_checkout_get_payment_links_link_idadyen_management_get_merchants_merchant_id_storesadyen_management_post_merchants_merchant_id_webhooks
Path and query parameters are exposed as snake_case tool arguments. JSON request payloads are passed through the body argument using Adyen’s official field names.
adyen_checkout_post_payments({
body = {
amount = { value = 1000, currency = "EUR" },
paymentMethod = { type = "scheme" },
reference = "ORDER-123",
returnUrl = "https://example.test/return"
}
})
When merchant_account is configured, Checkout request bodies receive merchantAccount automatically if it is not already present.
adyen_checkout_post_payment_methods({
body = {
amount = { value = 1000, currency = "EUR" },
countryCode = "NL",
channel = "Web"
}
})
Management paths accept explicit IDs or use configured defaults for common account identifiers.
adyen_management_get_merchants_merchant_id_stores({
merchant_id = "MerchantECOM",
page_size = 20
})
adyen_management_get_companies_company_id_users({
company_id = "ExampleCompany"
})
Additional documented query parameters can be passed exactly as named through query.
adyen_management_get_stores({
query = {
merchantId = "MerchantECOM",
pageSize = 50
}
})
Return Shape
Tools return the parsed JSON object from Adyen. 204 No Content responses return an empty object. Errors are normalized into tool errors that include the Adyen HTTP status and message when available.
Notes
- This package covers official Checkout v72 and Management v3 operations. Other Adyen API families such as Balance Platform, Transfers, Recurring, Payout, Terminal API, and webhooks are separate official specs and are not included in this package surface yet.
- The integration does not invent unsupported transaction lookup tools. Use Adyen webhooks, reports, Balance Platform, or Transfers APIs for transaction-level records outside Checkout.
- Do not put real card details, private shopper data, live merchant identifiers, or real API keys in tests or examples.
Raw agent markdown
# Adyen Integration
Adyen exposes official Checkout v72 and Management v3 operations generated from `Adyen/adyen-openapi`.
## Configuration
| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `api_key` | secret | Yes | Adyen API key sent as `X-API-Key`. |
| `merchant_account` | text | No | Default merchant account or merchant ID. Used for Checkout `merchantAccount`, Management `merchantId` path parameters, and Management `merchantId` query parameters when omitted. |
| `company_id` | text | No | Default company ID for company-scoped Management API paths. |
| `url` | url | No | Checkout API base URL without version. Test default is `https://checkout-test.adyen.com`. Live URLs must use the Adyen live prefix URL without the version suffix. |
| `management_url` | url | No | Management API base URL without version. Test default is `https://management-test.adyen.com`. |
## Usage Pattern
Tool names are generated from the official service and operation ID:
- `adyen_checkout_post_payments`
- `adyen_checkout_get_payment_links_link_id`
- `adyen_management_get_merchants_merchant_id_stores`
- `adyen_management_post_merchants_merchant_id_webhooks`
Path and query parameters are exposed as snake_case tool arguments. JSON request payloads are passed through the `body` argument using Adyen's official field names.
```lua
adyen_checkout_post_payments({
body = {
amount = { value = 1000, currency = "EUR" },
paymentMethod = { type = "scheme" },
reference = "ORDER-123",
returnUrl = "https://example.test/return"
}
})
```
When `merchant_account` is configured, Checkout request bodies receive `merchantAccount` automatically if it is not already present.
```lua
adyen_checkout_post_payment_methods({
body = {
amount = { value = 1000, currency = "EUR" },
countryCode = "NL",
channel = "Web"
}
})
```
Management paths accept explicit IDs or use configured defaults for common account identifiers.
```lua
adyen_management_get_merchants_merchant_id_stores({
merchant_id = "MerchantECOM",
page_size = 20
})
adyen_management_get_companies_company_id_users({
company_id = "ExampleCompany"
})
```
Additional documented query parameters can be passed exactly as named through `query`.
```lua
adyen_management_get_stores({
query = {
merchantId = "MerchantECOM",
pageSize = 50
}
})
```
## Return Shape
Tools return the parsed JSON object from Adyen. `204 No Content` responses return an empty object. Errors are normalized into tool errors that include the Adyen HTTP status and message when available.
## Notes
- This package covers official Checkout v72 and Management v3 operations. Other Adyen API families such as Balance Platform, Transfers, Recurring, Payout, Terminal API, and webhooks are separate official specs and are not included in this package surface yet.
- The integration does not invent unsupported transaction lookup tools. Use Adyen webhooks, reports, Balance Platform, or Transfers APIs for transaction-level records outside Checkout.
- Do not put real card details, private shopper data, live merchant identifiers, or real API keys in tests or examples. local result = app.integrations.adyen.get_apple_pay_session({})
print(result) Functions
get_apple_pay_session Write
Execute official Adyen checkout API operation `post-applePay-sessions`. Endpoint: POST /applePay/sessions.
- Lua path
app.integrations.adyen.get_apple_pay_session- Full name
adyen.adyen_checkout_post_apple_pay_sessions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cancel_authorised_payment Write
Execute official Adyen checkout API operation `post-cancels`. Endpoint: POST /cancels.
- Lua path
app.integrations.adyen.cancel_authorised_payment- Full name
adyen.adyen_checkout_post_cancels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_brands_and_other_details_card Write
Execute official Adyen checkout API operation `post-cardDetails`. Endpoint: POST /cardDetails.
- Lua path
app.integrations.adyen.get_brands_and_other_details_card- Full name
adyen.adyen_checkout_post_card_details
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_donation_campaigns Write
Execute official Adyen checkout API operation `post-donationCampaigns`. Endpoint: POST /donationCampaigns.
- Lua path
app.integrations.adyen.get_list_donation_campaigns- Full name
adyen.adyen_checkout_post_donation_campaigns
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
make_donation Write
Execute official Adyen checkout API operation `post-donations`. Endpoint: POST /donations.
- Lua path
app.integrations.adyen.make_donation- Full name
adyen.adyen_checkout_post_donations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
forward_stored_payment_details Write
Execute official Adyen checkout API operation `post-forward`. Endpoint: POST /forward.
- Lua path
app.integrations.adyen.forward_stored_payment_details- Full name
adyen.adyen_checkout_post_forward
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_order Write
Execute official Adyen checkout API operation `post-orders`. Endpoint: POST /orders.
- Lua path
app.integrations.adyen.create_order- Full name
adyen.adyen_checkout_post_orders
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cancel_order Write
Execute official Adyen checkout API operation `post-orders-cancel`. Endpoint: POST /orders/cancel.
- Lua path
app.integrations.adyen.cancel_order- Full name
adyen.adyen_checkout_post_orders_cancel
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_originkey_values_domains Write
Execute official Adyen checkout API operation `post-originKeys`. Endpoint: POST /originKeys.
- Lua path
app.integrations.adyen.create_originkey_values_domains- Full name
adyen.adyen_checkout_post_origin_keys
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_payment_link Write
Execute official Adyen checkout API operation `post-paymentLinks`. Endpoint: POST /paymentLinks.
- Lua path
app.integrations.adyen.create_payment_link- Full name
adyen.adyen_checkout_post_payment_links
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_payment_link Read
Execute official Adyen checkout API operation `get-paymentLinks-linkId`. Endpoint: GET /paymentLinks/{linkId}.
- Lua path
app.integrations.adyen.get_payment_link- Full name
adyen.adyen_checkout_get_payment_links_link_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_status_payment_link Write
Execute official Adyen checkout API operation `patch-paymentLinks-linkId`. Endpoint: PATCH /paymentLinks/{linkId}.
- Lua path
app.integrations.adyen.update_status_payment_link- Full name
adyen.adyen_checkout_patch_payment_links_link_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_available_payment_methods Write
Execute official Adyen checkout API operation `post-paymentMethods`. Endpoint: POST /paymentMethods.
- Lua path
app.integrations.adyen.get_list_available_payment_methods- Full name
adyen.adyen_checkout_post_payment_methods
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_balance_gift_card Write
Execute official Adyen checkout API operation `post-paymentMethods-balance`. Endpoint: POST /paymentMethods/balance.
- Lua path
app.integrations.adyen.get_balance_gift_card- Full name
adyen.adyen_checkout_post_payment_methods_balance
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
start_transaction Write
Execute official Adyen checkout API operation `post-payments`. Endpoint: POST /payments.
- Lua path
app.integrations.adyen.start_transaction- Full name
adyen.adyen_checkout_post_payments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
submit_details_payment Write
Execute official Adyen checkout API operation `post-payments-details`. Endpoint: POST /payments/details.
- Lua path
app.integrations.adyen.submit_details_payment- Full name
adyen.adyen_checkout_post_payments_details
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_authorised_amount Write
Execute official Adyen checkout API operation `post-payments-paymentPspReference-amountUpdates`. Endpoint: POST /payments/{paymentPspReference}/amountUpdates.
- Lua path
app.integrations.adyen.update_authorised_amount- Full name
adyen.adyen_checkout_post_payments_payment_psp_reference_amount_updates
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cancel_authorised_payment Write
Execute official Adyen checkout API operation `post-payments-paymentPspReference-cancels`. Endpoint: POST /payments/{paymentPspReference}/cancels.
- Lua path
app.integrations.adyen.cancel_authorised_payment- Full name
adyen.adyen_checkout_post_payments_payment_psp_reference_cancels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
capture_authorised_payment Write
Execute official Adyen checkout API operation `post-payments-paymentPspReference-captures`. Endpoint: POST /payments/{paymentPspReference}/captures.
- Lua path
app.integrations.adyen.capture_authorised_payment- Full name
adyen.adyen_checkout_post_payments_payment_psp_reference_captures
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
refund_captured_payment Write
Execute official Adyen checkout API operation `post-payments-paymentPspReference-refunds`. Endpoint: POST /payments/{paymentPspReference}/refunds.
- Lua path
app.integrations.adyen.refund_captured_payment- Full name
adyen.adyen_checkout_post_payments_payment_psp_reference_refunds
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
refund_or_cancel_payment Write
Execute official Adyen checkout API operation `post-payments-paymentPspReference-reversals`. Endpoint: POST /payments/{paymentPspReference}/reversals.
- Lua path
app.integrations.adyen.refund_or_cancel_payment- Full name
adyen.adyen_checkout_post_payments_payment_psp_reference_reversals
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
updates_order_paypal_express_checkout Write
Execute official Adyen checkout API operation `post-paypal-updateOrder`. Endpoint: POST /paypal/updateOrder.
- Lua path
app.integrations.adyen.updates_order_paypal_express_checkout- Full name
adyen.adyen_checkout_post_paypal_update_order
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_payment_session Write
Execute official Adyen checkout API operation `post-sessions`. Endpoint: POST /sessions.
- Lua path
app.integrations.adyen.create_payment_session- Full name
adyen.adyen_checkout_post_sessions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_result_payment_session Read
Execute official Adyen checkout API operation `get-sessions-sessionId`. Endpoint: GET /sessions/{sessionId}.
- Lua path
app.integrations.adyen.get_result_payment_session- Full name
adyen.adyen_checkout_get_sessions_session_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_tokens_stored_payment_details Read
Execute official Adyen checkout API operation `get-storedPaymentMethods`. Endpoint: GET /storedPaymentMethods.
- Lua path
app.integrations.adyen.get_tokens_stored_payment_details- Full name
adyen.adyen_checkout_get_stored_payment_methods
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_token_store_payment_details Write
Execute official Adyen checkout API operation `post-storedPaymentMethods`. Endpoint: POST /storedPaymentMethods.
- Lua path
app.integrations.adyen.create_token_store_payment_details- Full name
adyen.adyen_checkout_post_stored_payment_methods
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_token_stored_payment_details Write
Execute official Adyen checkout API operation `delete-storedPaymentMethods-storedPaymentMethodId`. Endpoint: DELETE /storedPaymentMethods/{storedPaymentMethodId}.
- Lua path
app.integrations.adyen.delete_token_stored_payment_details- Full name
adyen.adyen_checkout_delete_stored_payment_methods_stored_payment_method_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
validates_shopper_id Write
Execute official Adyen checkout API operation `post-validateShopperId`. Endpoint: POST /validateShopperId.
- Lua path
app.integrations.adyen.validates_shopper_id- Full name
adyen.adyen_checkout_post_validate_shopper_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_company_accounts Read
Execute official Adyen management API operation `get-companies`. Endpoint: GET /companies.
- Lua path
app.integrations.adyen.get_list_company_accounts- Full name
adyen.adyen_management_get_companies
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_company_account Read
Execute official Adyen management API operation `get-companies-companyId`. Endpoint: GET /companies/{companyId}.
- Lua path
app.integrations.adyen.get_company_account- Full name
adyen.adyen_management_get_companies_company_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_android_apps Read
Execute official Adyen management API operation `get-companies-companyId-androidApps`. Endpoint: GET /companies/{companyId}/androidApps.
- Lua path
app.integrations.adyen.get_list_android_apps- Full name
adyen.adyen_management_get_companies_company_id_android_apps
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
upload_android_app Write
Execute official Adyen management API operation `post-companies-companyId-androidApps`. Endpoint: POST /companies/{companyId}/androidApps.
- Lua path
app.integrations.adyen.upload_android_app- Full name
adyen.adyen_management_post_companies_company_id_android_apps
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_android_app Read
Execute official Adyen management API operation `get-companies-companyId-androidApps-id`. Endpoint: GET /companies/{companyId}/androidApps/{id}.
- Lua path
app.integrations.adyen.get_android_app- Full name
adyen.adyen_management_get_companies_company_id_android_apps_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
reprocess_android_app Write
Execute official Adyen management API operation `patch-companies-companyId-androidApps-id`. Endpoint: PATCH /companies/{companyId}/androidApps/{id}.
- Lua path
app.integrations.adyen.reprocess_android_app- Full name
adyen.adyen_management_patch_companies_company_id_android_apps_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_android_certificates Read
Execute official Adyen management API operation `get-companies-companyId-androidCertificates`. Endpoint: GET /companies/{companyId}/androidCertificates.
- Lua path
app.integrations.adyen.get_list_android_certificates- Full name
adyen.adyen_management_get_companies_company_id_android_certificates
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
upload_android_certificate Write
Execute official Adyen management API operation `post-companies-companyId-androidCertificates`. Endpoint: POST /companies/{companyId}/androidCertificates.
- Lua path
app.integrations.adyen.upload_android_certificate- Full name
adyen.adyen_management_post_companies_company_id_android_certificates
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_api_credentials Read
Execute official Adyen management API operation `get-companies-companyId-apiCredentials`. Endpoint: GET /companies/{companyId}/apiCredentials.
- Lua path
app.integrations.adyen.get_list_api_credentials- Full name
adyen.adyen_management_get_companies_company_id_api_credentials
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_api_credential Write
Execute official Adyen management API operation `post-companies-companyId-apiCredentials`. Endpoint: POST /companies/{companyId}/apiCredentials.
- Lua path
app.integrations.adyen.create_api_credential- Full name
adyen.adyen_management_post_companies_company_id_api_credentials
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_api_credential Read
Execute official Adyen management API operation `get-companies-companyId-apiCredentials-apiCredentialId`. Endpoint: GET /companies/{companyId}/apiCredentials/{apiCredentialId}.
- Lua path
app.integrations.adyen.get_api_credential- Full name
adyen.adyen_management_get_companies_company_id_api_credentials_api_credential_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_api_credential Write
Execute official Adyen management API operation `patch-companies-companyId-apiCredentials-apiCredentialId`. Endpoint: PATCH /companies/{companyId}/apiCredentials/{apiCredentialId}.
- Lua path
app.integrations.adyen.update_api_credential- Full name
adyen.adyen_management_patch_companies_company_id_api_credentials_api_credential_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_allowed_origins Read
Execute official Adyen management API operation `get-companies-companyId-apiCredentials-apiCredentialId-allowedOrigins`. Endpoint: GET /companies/{companyId}/apiCredentials/{apiCredentialId}/allowedOrigins.
- Lua path
app.integrations.adyen.get_list_allowed_origins- Full name
adyen.adyen_management_get_companies_company_id_api_credentials_api_credential_id_allowed_origins
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_allowed_origin Write
Execute official Adyen management API operation `post-companies-companyId-apiCredentials-apiCredentialId-allowedOrigins`. Endpoint: POST /companies/{companyId}/apiCredentials/{apiCredentialId}/allowedOrigins.
- Lua path
app.integrations.adyen.create_allowed_origin- Full name
adyen.adyen_management_post_companies_company_id_api_credentials_api_credential_id_allowed_origins
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_allowed_origin Write
Execute official Adyen management API operation `delete-companies-companyId-apiCredentials-apiCredentialId-allowedOrigins-originId`. Endpoint: DELETE /companies/{companyId}/apiCredentials/{apiCredentialId}/allowedOrigins/{originId}.
- Lua path
app.integrations.adyen.delete_allowed_origin- Full name
adyen.adyen_management_delete_companies_company_id_api_credentials_api_credential_id_allowed_origins_origin_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_allowed_origin Read
Execute official Adyen management API operation `get-companies-companyId-apiCredentials-apiCredentialId-allowedOrigins-originId`. Endpoint: GET /companies/{companyId}/apiCredentials/{apiCredentialId}/allowedOrigins/{originId}.
- Lua path
app.integrations.adyen.get_allowed_origin- Full name
adyen.adyen_management_get_companies_company_id_api_credentials_api_credential_id_allowed_origins_origin_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_new_api_key Write
Execute official Adyen management API operation `post-companies-companyId-apiCredentials-apiCredentialId-generateApiKey`. Endpoint: POST /companies/{companyId}/apiCredentials/{apiCredentialId}/generateApiKey.
- Lua path
app.integrations.adyen.generate_new_api_key- Full name
adyen.adyen_management_post_companies_company_id_api_credentials_api_credential_id_generate_api_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_new_client_key Write
Execute official Adyen management API operation `post-companies-companyId-apiCredentials-apiCredentialId-generateClientKey`. Endpoint: POST /companies/{companyId}/apiCredentials/{apiCredentialId}/generateClientKey.
- Lua path
app.integrations.adyen.generate_new_client_key- Full name
adyen.adyen_management_post_companies_company_id_api_credentials_api_credential_id_generate_client_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_billing_entities Read
Execute official Adyen management API operation `get-companies-companyId-billingEntities`. Endpoint: GET /companies/{companyId}/billingEntities.
- Lua path
app.integrations.adyen.get_list_billing_entities- Full name
adyen.adyen_management_get_companies_company_id_billing_entities
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_merchant_accounts Read
Execute official Adyen management API operation `get-companies-companyId-merchants`. Endpoint: GET /companies/{companyId}/merchants.
- Lua path
app.integrations.adyen.get_list_merchant_accounts- Full name
adyen.adyen_management_get_companies_company_id_merchants
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_shipping_locations Read
Execute official Adyen management API operation `get-companies-companyId-shippingLocations`. Endpoint: GET /companies/{companyId}/shippingLocations.
- Lua path
app.integrations.adyen.get_list_shipping_locations- Full name
adyen.adyen_management_get_companies_company_id_shipping_locations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_shipping_location Write
Execute official Adyen management API operation `post-companies-companyId-shippingLocations`. Endpoint: POST /companies/{companyId}/shippingLocations.
- Lua path
app.integrations.adyen.create_shipping_location- Full name
adyen.adyen_management_post_companies_company_id_shipping_locations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_terminal_actions Read
Execute official Adyen management API operation `get-companies-companyId-terminalActions`. Endpoint: GET /companies/{companyId}/terminalActions.
- Lua path
app.integrations.adyen.get_list_terminal_actions- Full name
adyen.adyen_management_get_companies_company_id_terminal_actions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_terminal_action Read
Execute official Adyen management API operation `get-companies-companyId-terminalActions-actionId`. Endpoint: GET /companies/{companyId}/terminalActions/{actionId}.
- Lua path
app.integrations.adyen.get_terminal_action- Full name
adyen.adyen_management_get_companies_company_id_terminal_actions_action_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_terminal_logo Read
Execute official Adyen management API operation `get-companies-companyId-terminalLogos`. Endpoint: GET /companies/{companyId}/terminalLogos.
- Lua path
app.integrations.adyen.get_terminal_logo- Full name
adyen.adyen_management_get_companies_company_id_terminal_logos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_terminal_logo Write
Execute official Adyen management API operation `patch-companies-companyId-terminalLogos`. Endpoint: PATCH /companies/{companyId}/terminalLogos.
- Lua path
app.integrations.adyen.update_terminal_logo- Full name
adyen.adyen_management_patch_companies_company_id_terminal_logos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_terminal_models Read
Execute official Adyen management API operation `get-companies-companyId-terminalModels`. Endpoint: GET /companies/{companyId}/terminalModels.
- Lua path
app.integrations.adyen.get_list_terminal_models- Full name
adyen.adyen_management_get_companies_company_id_terminal_models
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_orders Read
Execute official Adyen management API operation `get-companies-companyId-terminalOrders`. Endpoint: GET /companies/{companyId}/terminalOrders.
- Lua path
app.integrations.adyen.get_list_orders- Full name
adyen.adyen_management_get_companies_company_id_terminal_orders
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_order Write
Execute official Adyen management API operation `post-companies-companyId-terminalOrders`. Endpoint: POST /companies/{companyId}/terminalOrders.
- Lua path
app.integrations.adyen.create_order- Full name
adyen.adyen_management_post_companies_company_id_terminal_orders
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_order Read
Execute official Adyen management API operation `get-companies-companyId-terminalOrders-orderId`. Endpoint: GET /companies/{companyId}/terminalOrders/{orderId}.
- Lua path
app.integrations.adyen.get_order- Full name
adyen.adyen_management_get_companies_company_id_terminal_orders_order_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_order Write
Execute official Adyen management API operation `patch-companies-companyId-terminalOrders-orderId`. Endpoint: PATCH /companies/{companyId}/terminalOrders/{orderId}.
- Lua path
app.integrations.adyen.update_order- Full name
adyen.adyen_management_patch_companies_company_id_terminal_orders_order_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cancel_order Write
Execute official Adyen management API operation `post-companies-companyId-terminalOrders-orderId-cancel`. Endpoint: POST /companies/{companyId}/terminalOrders/{orderId}/cancel.
- Lua path
app.integrations.adyen.cancel_order- Full name
adyen.adyen_management_post_companies_company_id_terminal_orders_order_id_cancel
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_terminal_products Read
Execute official Adyen management API operation `get-companies-companyId-terminalProducts`. Endpoint: GET /companies/{companyId}/terminalProducts.
- Lua path
app.integrations.adyen.get_list_terminal_products- Full name
adyen.adyen_management_get_companies_company_id_terminal_products
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_terminal_settings Read
Execute official Adyen management API operation `get-companies-companyId-terminalSettings`. Endpoint: GET /companies/{companyId}/terminalSettings.
- Lua path
app.integrations.adyen.get_terminal_settings- Full name
adyen.adyen_management_get_companies_company_id_terminal_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_terminal_settings Write
Execute official Adyen management API operation `patch-companies-companyId-terminalSettings`. Endpoint: PATCH /companies/{companyId}/terminalSettings.
- Lua path
app.integrations.adyen.update_terminal_settings- Full name
adyen.adyen_management_patch_companies_company_id_terminal_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_users Read
Execute official Adyen management API operation `get-companies-companyId-users`. Endpoint: GET /companies/{companyId}/users.
- Lua path
app.integrations.adyen.get_list_users- Full name
adyen.adyen_management_get_companies_company_id_users
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_new_user Write
Execute official Adyen management API operation `post-companies-companyId-users`. Endpoint: POST /companies/{companyId}/users.
- Lua path
app.integrations.adyen.create_new_user- Full name
adyen.adyen_management_post_companies_company_id_users
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_user_details Read
Execute official Adyen management API operation `get-companies-companyId-users-userId`. Endpoint: GET /companies/{companyId}/users/{userId}.
- Lua path
app.integrations.adyen.get_user_details- Full name
adyen.adyen_management_get_companies_company_id_users_user_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_user_details Write
Execute official Adyen management API operation `patch-companies-companyId-users-userId`. Endpoint: PATCH /companies/{companyId}/users/{userId}.
- Lua path
app.integrations.adyen.update_user_details- Full name
adyen.adyen_management_patch_companies_company_id_users_user_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_all_webhooks Read
Execute official Adyen management API operation `get-companies-companyId-webhooks`. Endpoint: GET /companies/{companyId}/webhooks.
- Lua path
app.integrations.adyen.list_all_webhooks- Full name
adyen.adyen_management_get_companies_company_id_webhooks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
set_up_webhook Write
Execute official Adyen management API operation `post-companies-companyId-webhooks`. Endpoint: POST /companies/{companyId}/webhooks.
- Lua path
app.integrations.adyen.set_up_webhook- Full name
adyen.adyen_management_post_companies_company_id_webhooks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_webhook Write
Execute official Adyen management API operation `delete-companies-companyId-webhooks-webhookId`. Endpoint: DELETE /companies/{companyId}/webhooks/{webhookId}.
- Lua path
app.integrations.adyen.remove_webhook- Full name
adyen.adyen_management_delete_companies_company_id_webhooks_webhook_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_webhook Read
Execute official Adyen management API operation `get-companies-companyId-webhooks-webhookId`. Endpoint: GET /companies/{companyId}/webhooks/{webhookId}.
- Lua path
app.integrations.adyen.get_webhook- Full name
adyen.adyen_management_get_companies_company_id_webhooks_webhook_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_webhook Write
Execute official Adyen management API operation `patch-companies-companyId-webhooks-webhookId`. Endpoint: PATCH /companies/{companyId}/webhooks/{webhookId}.
- Lua path
app.integrations.adyen.update_webhook- Full name
adyen.adyen_management_patch_companies_company_id_webhooks_webhook_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_hmac_key Write
Execute official Adyen management API operation `post-companies-companyId-webhooks-webhookId-generateHmac`. Endpoint: POST /companies/{companyId}/webhooks/{webhookId}/generateHmac.
- Lua path
app.integrations.adyen.generate_hmac_key- Full name
adyen.adyen_management_post_companies_company_id_webhooks_webhook_id_generate_hmac
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
test_webhook Write
Execute official Adyen management API operation `post-companies-companyId-webhooks-webhookId-test`. Endpoint: POST /companies/{companyId}/webhooks/{webhookId}/test.
- Lua path
app.integrations.adyen.test_webhook- Full name
adyen.adyen_management_post_companies_company_id_webhooks_webhook_id_test
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_api_credential_details Read
Execute official Adyen management API operation `get-me`. Endpoint: GET /me.
- Lua path
app.integrations.adyen.get_api_credential_details- Full name
adyen.adyen_management_get_me
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_allowed_origins Read
Execute official Adyen management API operation `get-me-allowedOrigins`. Endpoint: GET /me/allowedOrigins.
- Lua path
app.integrations.adyen.get_allowed_origins- Full name
adyen.adyen_management_get_me_allowed_origins
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_allowed_origin Write
Execute official Adyen management API operation `post-me-allowedOrigins`. Endpoint: POST /me/allowedOrigins.
- Lua path
app.integrations.adyen.add_allowed_origin- Full name
adyen.adyen_management_post_me_allowed_origins
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_allowed_origin Write
Execute official Adyen management API operation `delete-me-allowedOrigins-originId`. Endpoint: DELETE /me/allowedOrigins/{originId}.
- Lua path
app.integrations.adyen.remove_allowed_origin- Full name
adyen.adyen_management_delete_me_allowed_origins_origin_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_allowed_origin_details Read
Execute official Adyen management API operation `get-me-allowedOrigins-originId`. Endpoint: GET /me/allowedOrigins/{originId}.
- Lua path
app.integrations.adyen.get_allowed_origin_details- Full name
adyen.adyen_management_get_me_allowed_origins_origin_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_client_key Write
Execute official Adyen management API operation `post-me-generateClientKey`. Endpoint: POST /me/generateClientKey.
- Lua path
app.integrations.adyen.generate_client_key- Full name
adyen.adyen_management_post_me_generate_client_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_merchant_accounts Read
Execute official Adyen management API operation `get-merchants`. Endpoint: GET /merchants.
- Lua path
app.integrations.adyen.get_list_merchant_accounts- Full name
adyen.adyen_management_get_merchants
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_merchant_account Write
Execute official Adyen management API operation `post-merchants`. Endpoint: POST /merchants.
- Lua path
app.integrations.adyen.create_merchant_account- Full name
adyen.adyen_management_post_merchants
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_merchant_account Read
Execute official Adyen management API operation `get-merchants-merchantId`. Endpoint: GET /merchants/{merchantId}.
- Lua path
app.integrations.adyen.get_merchant_account- Full name
adyen.adyen_management_get_merchants_merchant_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_activate_merchant_account Write
Execute official Adyen management API operation `post-merchants-merchantId-activate`. Endpoint: POST /merchants/{merchantId}/activate.
- Lua path
app.integrations.adyen.request_activate_merchant_account- Full name
adyen.adyen_management_post_merchants_merchant_id_activate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_api_credentials Read
Execute official Adyen management API operation `get-merchants-merchantId-apiCredentials`. Endpoint: GET /merchants/{merchantId}/apiCredentials.
- Lua path
app.integrations.adyen.get_list_api_credentials- Full name
adyen.adyen_management_get_merchants_merchant_id_api_credentials
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_api_credential Write
Execute official Adyen management API operation `post-merchants-merchantId-apiCredentials`. Endpoint: POST /merchants/{merchantId}/apiCredentials.
- Lua path
app.integrations.adyen.create_api_credential- Full name
adyen.adyen_management_post_merchants_merchant_id_api_credentials
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_api_credential Read
Execute official Adyen management API operation `get-merchants-merchantId-apiCredentials-apiCredentialId`. Endpoint: GET /merchants/{merchantId}/apiCredentials/{apiCredentialId}.
- Lua path
app.integrations.adyen.get_api_credential- Full name
adyen.adyen_management_get_merchants_merchant_id_api_credentials_api_credential_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_api_credential Write
Execute official Adyen management API operation `patch-merchants-merchantId-apiCredentials-apiCredentialId`. Endpoint: PATCH /merchants/{merchantId}/apiCredentials/{apiCredentialId}.
- Lua path
app.integrations.adyen.update_api_credential- Full name
adyen.adyen_management_patch_merchants_merchant_id_api_credentials_api_credential_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_allowed_origins Read
Execute official Adyen management API operation `get-merchants-merchantId-apiCredentials-apiCredentialId-allowedOrigins`. Endpoint: GET /merchants/{merchantId}/apiCredentials/{apiCredentialId}/allowedOrigins.
- Lua path
app.integrations.adyen.get_list_allowed_origins- Full name
adyen.adyen_management_get_merchants_merchant_id_api_credentials_api_credential_id_allowed_origins
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_allowed_origin Write
Execute official Adyen management API operation `post-merchants-merchantId-apiCredentials-apiCredentialId-allowedOrigins`. Endpoint: POST /merchants/{merchantId}/apiCredentials/{apiCredentialId}/allowedOrigins.
- Lua path
app.integrations.adyen.create_allowed_origin- Full name
adyen.adyen_management_post_merchants_merchant_id_api_credentials_api_credential_id_allowed_origins
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_allowed_origin Write
Execute official Adyen management API operation `delete-merchants-merchantId-apiCredentials-apiCredentialId-allowedOrigins-originId`. Endpoint: DELETE /merchants/{merchantId}/apiCredentials/{apiCredentialId}/allowedOrigins/{originId}.
- Lua path
app.integrations.adyen.delete_allowed_origin- Full name
adyen.adyen_management_delete_merchants_merchant_id_api_credentials_api_credential_id_allowed_origins_origin_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_allowed_origin Read
Execute official Adyen management API operation `get-merchants-merchantId-apiCredentials-apiCredentialId-allowedOrigins-originId`. Endpoint: GET /merchants/{merchantId}/apiCredentials/{apiCredentialId}/allowedOrigins/{originId}.
- Lua path
app.integrations.adyen.get_allowed_origin- Full name
adyen.adyen_management_get_merchants_merchant_id_api_credentials_api_credential_id_allowed_origins_origin_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_new_api_key Write
Execute official Adyen management API operation `post-merchants-merchantId-apiCredentials-apiCredentialId-generateApiKey`. Endpoint: POST /merchants/{merchantId}/apiCredentials/{apiCredentialId}/generateApiKey.
- Lua path
app.integrations.adyen.generate_new_api_key- Full name
adyen.adyen_management_post_merchants_merchant_id_api_credentials_api_credential_id_generate_api_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_new_client_key Write
Execute official Adyen management API operation `post-merchants-merchantId-apiCredentials-apiCredentialId-generateClientKey`. Endpoint: POST /merchants/{merchantId}/apiCredentials/{apiCredentialId}/generateClientKey.
- Lua path
app.integrations.adyen.generate_new_client_key- Full name
adyen.adyen_management_post_merchants_merchant_id_api_credentials_api_credential_id_generate_client_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_billing_entities Read
Execute official Adyen management API operation `get-merchants-merchantId-billingEntities`. Endpoint: GET /merchants/{merchantId}/billingEntities.
- Lua path
app.integrations.adyen.get_list_billing_entities- Full name
adyen.adyen_management_get_merchants_merchant_id_billing_entities
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_all_payment_methods Read
Execute official Adyen management API operation `get-merchants-merchantId-paymentMethodSettings`. Endpoint: GET /merchants/{merchantId}/paymentMethodSettings.
- Lua path
app.integrations.adyen.get_all_payment_methods- Full name
adyen.adyen_management_get_merchants_merchant_id_payment_method_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_payment_method Write
Execute official Adyen management API operation `post-merchants-merchantId-paymentMethodSettings`. Endpoint: POST /merchants/{merchantId}/paymentMethodSettings.
- Lua path
app.integrations.adyen.request_payment_method- Full name
adyen.adyen_management_post_merchants_merchant_id_payment_method_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_payment_method_details Read
Execute official Adyen management API operation `get-merchants-merchantId-paymentMethodSettings-paymentMethodId`. Endpoint: GET /merchants/{merchantId}/paymentMethodSettings/{paymentMethodId}.
- Lua path
app.integrations.adyen.get_payment_method_details- Full name
adyen.adyen_management_get_merchants_merchant_id_payment_method_settings_payment_method_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_payment_method Write
Execute official Adyen management API operation `patch-merchants-merchantId-paymentMethodSettings-paymentMethodId`. Endpoint: PATCH /merchants/{merchantId}/paymentMethodSettings/{paymentMethodId}.
- Lua path
app.integrations.adyen.update_payment_method- Full name
adyen.adyen_management_patch_merchants_merchant_id_payment_method_settings_payment_method_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_apple_pay_domain Write
Execute official Adyen management API operation `post-merchants-merchantId-paymentMethodSettings-paymentMethodId-addApplePayDomains`. Endpoint: POST /merchants/{merchantId}/paymentMethodSettings/{paymentMethodId}/addApplePayDomains.
- Lua path
app.integrations.adyen.add_apple_pay_domain- Full name
adyen.adyen_management_post_merchants_merchant_id_payment_method_settings_payment_method_id_add_apple_pay_domains
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_apple_pay_domains Read
Execute official Adyen management API operation `get-merchants-merchantId-paymentMethodSettings-paymentMethodId-getApplePayDomains`. Endpoint: GET /merchants/{merchantId}/paymentMethodSettings/{paymentMethodId}/getApplePayDomains.
- Lua path
app.integrations.adyen.get_apple_pay_domains- Full name
adyen.adyen_management_get_merchants_merchant_id_payment_method_settings_payment_method_id_get_apple_pay_domains
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_payout_settings Read
Execute official Adyen management API operation `get-merchants-merchantId-payoutSettings`. Endpoint: GET /merchants/{merchantId}/payoutSettings.
- Lua path
app.integrations.adyen.get_list_payout_settings- Full name
adyen.adyen_management_get_merchants_merchant_id_payout_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_payout_setting Write
Execute official Adyen management API operation `post-merchants-merchantId-payoutSettings`. Endpoint: POST /merchants/{merchantId}/payoutSettings.
- Lua path
app.integrations.adyen.add_payout_setting- Full name
adyen.adyen_management_post_merchants_merchant_id_payout_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_payout_setting Write
Execute official Adyen management API operation `delete-merchants-merchantId-payoutSettings-payoutSettingsId`. Endpoint: DELETE /merchants/{merchantId}/payoutSettings/{payoutSettingsId}.
- Lua path
app.integrations.adyen.delete_payout_setting- Full name
adyen.adyen_management_delete_merchants_merchant_id_payout_settings_payout_settings_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_payout_setting Read
Execute official Adyen management API operation `get-merchants-merchantId-payoutSettings-payoutSettingsId`. Endpoint: GET /merchants/{merchantId}/payoutSettings/{payoutSettingsId}.
- Lua path
app.integrations.adyen.get_payout_setting- Full name
adyen.adyen_management_get_merchants_merchant_id_payout_settings_payout_settings_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_payout_setting Write
Execute official Adyen management API operation `patch-merchants-merchantId-payoutSettings-payoutSettingsId`. Endpoint: PATCH /merchants/{merchantId}/payoutSettings/{payoutSettingsId}.
- Lua path
app.integrations.adyen.update_payout_setting- Full name
adyen.adyen_management_patch_merchants_merchant_id_payout_settings_payout_settings_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_shipping_locations Read
Execute official Adyen management API operation `get-merchants-merchantId-shippingLocations`. Endpoint: GET /merchants/{merchantId}/shippingLocations.
- Lua path
app.integrations.adyen.get_list_shipping_locations- Full name
adyen.adyen_management_get_merchants_merchant_id_shipping_locations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_shipping_location Write
Execute official Adyen management API operation `post-merchants-merchantId-shippingLocations`. Endpoint: POST /merchants/{merchantId}/shippingLocations.
- Lua path
app.integrations.adyen.create_shipping_location- Full name
adyen.adyen_management_post_merchants_merchant_id_shipping_locations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_split_configuration_profiles Read
Execute official Adyen management API operation `get-merchants-merchantId-splitConfigurations`. Endpoint: GET /merchants/{merchantId}/splitConfigurations.
- Lua path
app.integrations.adyen.get_list_split_configuration_profiles- Full name
adyen.adyen_management_get_merchants_merchant_id_split_configurations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_split_configuration_profile Write
Execute official Adyen management API operation `post-merchants-merchantId-splitConfigurations`. Endpoint: POST /merchants/{merchantId}/splitConfigurations.
- Lua path
app.integrations.adyen.create_split_configuration_profile- Full name
adyen.adyen_management_post_merchants_merchant_id_split_configurations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_split_configuration_profile Write
Execute official Adyen management API operation `delete-merchants-merchantId-splitConfigurations-splitConfigurationId`. Endpoint: DELETE /merchants/{merchantId}/splitConfigurations/{splitConfigurationId}.
- Lua path
app.integrations.adyen.delete_split_configuration_profile- Full name
adyen.adyen_management_delete_merchants_merchant_id_split_configurations_split_configuration_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_split_configuration_profile Read
Execute official Adyen management API operation `get-merchants-merchantId-splitConfigurations-splitConfigurationId`. Endpoint: GET /merchants/{merchantId}/splitConfigurations/{splitConfigurationId}.
- Lua path
app.integrations.adyen.get_split_configuration_profile- Full name
adyen.adyen_management_get_merchants_merchant_id_split_configurations_split_configuration_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_description_split_configuration_profile Write
Execute official Adyen management API operation `patch-merchants-merchantId-splitConfigurations-splitConfigurationId`. Endpoint: PATCH /merchants/{merchantId}/splitConfigurations/{splitConfigurationId}.
- Lua path
app.integrations.adyen.update_description_split_configuration_profile- Full name
adyen.adyen_management_patch_merchants_merchant_id_split_configurations_split_configuration_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_rule Write
Execute official Adyen management API operation `post-merchants-merchantId-splitConfigurations-splitConfigurationId`. Endpoint: POST /merchants/{merchantId}/splitConfigurations/{splitConfigurationId}.
- Lua path
app.integrations.adyen.create_rule- Full name
adyen.adyen_management_post_merchants_merchant_id_split_configurations_split_configuration_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_rule Write
Execute official Adyen management API operation `delete-merchants-merchantId-splitConfigurations-splitConfigurationId-rules-ruleId`. Endpoint: DELETE /merchants/{merchantId}/splitConfigurations/{splitConfigurationId}/rules/{ruleId}.
- Lua path
app.integrations.adyen.delete_rule- Full name
adyen.adyen_management_delete_merchants_merchant_id_split_configurations_split_configuration_id_rules_rule_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_split_conditions Write
Execute official Adyen management API operation `patch-merchants-merchantId-splitConfigurations-splitConfigurationId-rules-ruleId`. Endpoint: PATCH /merchants/{merchantId}/splitConfigurations/{splitConfigurationId}/rules/{ruleId}.
- Lua path
app.integrations.adyen.update_split_conditions- Full name
adyen.adyen_management_patch_merchants_merchant_id_split_configurations_split_configuration_id_rules_rule_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_split_logic Write
Execute official Adyen management API operation `patch-merchants-merchantId-splitConfigurations-splitConfigurationId-rules-ruleId-splitLogic-splitLogicId`. Endpoint: PATCH /merchants/{merchantId}/splitConfigurations/{splitConfigurationId}/rules/{ruleId}/splitLogic/{splitLogicId}.
- Lua path
app.integrations.adyen.update_split_logic- Full name
adyen.adyen_management_patch_merchants_merchant_id_split_configurations_split_configuration_id_rules_rule_id_split_logic_split_logic_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_stores Read
Execute official Adyen management API operation `get-merchants-merchantId-stores`. Endpoint: GET /merchants/{merchantId}/stores.
- Lua path
app.integrations.adyen.get_list_stores- Full name
adyen.adyen_management_get_merchants_merchant_id_stores
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_store Write
Execute official Adyen management API operation `post-merchants-merchantId-stores`. Endpoint: POST /merchants/{merchantId}/stores.
- Lua path
app.integrations.adyen.create_store- Full name
adyen.adyen_management_post_merchants_merchant_id_stores
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_terminal_logo Read
Execute official Adyen management API operation `get-merchants-merchantId-stores-reference-terminalLogos`. Endpoint: GET /merchants/{merchantId}/stores/{reference}/terminalLogos.
- Lua path
app.integrations.adyen.get_terminal_logo- Full name
adyen.adyen_management_get_merchants_merchant_id_stores_reference_terminal_logos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_terminal_logo Write
Execute official Adyen management API operation `patch-merchants-merchantId-stores-reference-terminalLogos`. Endpoint: PATCH /merchants/{merchantId}/stores/{reference}/terminalLogos.
- Lua path
app.integrations.adyen.update_terminal_logo- Full name
adyen.adyen_management_patch_merchants_merchant_id_stores_reference_terminal_logos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_terminal_settings Read
Execute official Adyen management API operation `get-merchants-merchantId-stores-reference-terminalSettings`. Endpoint: GET /merchants/{merchantId}/stores/{reference}/terminalSettings.
- Lua path
app.integrations.adyen.get_terminal_settings- Full name
adyen.adyen_management_get_merchants_merchant_id_stores_reference_terminal_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_terminal_settings Write
Execute official Adyen management API operation `patch-merchants-merchantId-stores-reference-terminalSettings`. Endpoint: PATCH /merchants/{merchantId}/stores/{reference}/terminalSettings.
- Lua path
app.integrations.adyen.update_terminal_settings- Full name
adyen.adyen_management_patch_merchants_merchant_id_stores_reference_terminal_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_store Read
Execute official Adyen management API operation `get-merchants-merchantId-stores-storeId`. Endpoint: GET /merchants/{merchantId}/stores/{storeId}.
- Lua path
app.integrations.adyen.get_store- Full name
adyen.adyen_management_get_merchants_merchant_id_stores_store_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_store Write
Execute official Adyen management API operation `patch-merchants-merchantId-stores-storeId`. Endpoint: PATCH /merchants/{merchantId}/stores/{storeId}.
- Lua path
app.integrations.adyen.update_store- Full name
adyen.adyen_management_patch_merchants_merchant_id_stores_store_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_terminal_logo Read
Execute official Adyen management API operation `get-merchants-merchantId-terminalLogos`. Endpoint: GET /merchants/{merchantId}/terminalLogos.
- Lua path
app.integrations.adyen.get_terminal_logo- Full name
adyen.adyen_management_get_merchants_merchant_id_terminal_logos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_terminal_logo Write
Execute official Adyen management API operation `patch-merchants-merchantId-terminalLogos`. Endpoint: PATCH /merchants/{merchantId}/terminalLogos.
- Lua path
app.integrations.adyen.update_terminal_logo- Full name
adyen.adyen_management_patch_merchants_merchant_id_terminal_logos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_terminal_models Read
Execute official Adyen management API operation `get-merchants-merchantId-terminalModels`. Endpoint: GET /merchants/{merchantId}/terminalModels.
- Lua path
app.integrations.adyen.get_list_terminal_models- Full name
adyen.adyen_management_get_merchants_merchant_id_terminal_models
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_orders Read
Execute official Adyen management API operation `get-merchants-merchantId-terminalOrders`. Endpoint: GET /merchants/{merchantId}/terminalOrders.
- Lua path
app.integrations.adyen.get_list_orders- Full name
adyen.adyen_management_get_merchants_merchant_id_terminal_orders
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_order Write
Execute official Adyen management API operation `post-merchants-merchantId-terminalOrders`. Endpoint: POST /merchants/{merchantId}/terminalOrders.
- Lua path
app.integrations.adyen.create_order- Full name
adyen.adyen_management_post_merchants_merchant_id_terminal_orders
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_order Read
Execute official Adyen management API operation `get-merchants-merchantId-terminalOrders-orderId`. Endpoint: GET /merchants/{merchantId}/terminalOrders/{orderId}.
- Lua path
app.integrations.adyen.get_order- Full name
adyen.adyen_management_get_merchants_merchant_id_terminal_orders_order_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_order Write
Execute official Adyen management API operation `patch-merchants-merchantId-terminalOrders-orderId`. Endpoint: PATCH /merchants/{merchantId}/terminalOrders/{orderId}.
- Lua path
app.integrations.adyen.update_order- Full name
adyen.adyen_management_patch_merchants_merchant_id_terminal_orders_order_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cancel_order Write
Execute official Adyen management API operation `post-merchants-merchantId-terminalOrders-orderId-cancel`. Endpoint: POST /merchants/{merchantId}/terminalOrders/{orderId}/cancel.
- Lua path
app.integrations.adyen.cancel_order- Full name
adyen.adyen_management_post_merchants_merchant_id_terminal_orders_order_id_cancel
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_terminal_products Read
Execute official Adyen management API operation `get-merchants-merchantId-terminalProducts`. Endpoint: GET /merchants/{merchantId}/terminalProducts.
- Lua path
app.integrations.adyen.get_list_terminal_products- Full name
adyen.adyen_management_get_merchants_merchant_id_terminal_products
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_terminal_settings Read
Execute official Adyen management API operation `get-merchants-merchantId-terminalSettings`. Endpoint: GET /merchants/{merchantId}/terminalSettings.
- Lua path
app.integrations.adyen.get_terminal_settings- Full name
adyen.adyen_management_get_merchants_merchant_id_terminal_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_terminal_settings Write
Execute official Adyen management API operation `patch-merchants-merchantId-terminalSettings`. Endpoint: PATCH /merchants/{merchantId}/terminalSettings.
- Lua path
app.integrations.adyen.update_terminal_settings- Full name
adyen.adyen_management_patch_merchants_merchant_id_terminal_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_users Read
Execute official Adyen management API operation `get-merchants-merchantId-users`. Endpoint: GET /merchants/{merchantId}/users.
- Lua path
app.integrations.adyen.get_list_users- Full name
adyen.adyen_management_get_merchants_merchant_id_users
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_new_user Write
Execute official Adyen management API operation `post-merchants-merchantId-users`. Endpoint: POST /merchants/{merchantId}/users.
- Lua path
app.integrations.adyen.create_new_user- Full name
adyen.adyen_management_post_merchants_merchant_id_users
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_user_details Read
Execute official Adyen management API operation `get-merchants-merchantId-users-userId`. Endpoint: GET /merchants/{merchantId}/users/{userId}.
- Lua path
app.integrations.adyen.get_user_details- Full name
adyen.adyen_management_get_merchants_merchant_id_users_user_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_user Write
Execute official Adyen management API operation `patch-merchants-merchantId-users-userId`. Endpoint: PATCH /merchants/{merchantId}/users/{userId}.
- Lua path
app.integrations.adyen.update_user- Full name
adyen.adyen_management_patch_merchants_merchant_id_users_user_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_all_webhooks Read
Execute official Adyen management API operation `get-merchants-merchantId-webhooks`. Endpoint: GET /merchants/{merchantId}/webhooks.
- Lua path
app.integrations.adyen.list_all_webhooks- Full name
adyen.adyen_management_get_merchants_merchant_id_webhooks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
set_up_webhook Write
Execute official Adyen management API operation `post-merchants-merchantId-webhooks`. Endpoint: POST /merchants/{merchantId}/webhooks.
- Lua path
app.integrations.adyen.set_up_webhook- Full name
adyen.adyen_management_post_merchants_merchant_id_webhooks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_webhook Write
Execute official Adyen management API operation `delete-merchants-merchantId-webhooks-webhookId`. Endpoint: DELETE /merchants/{merchantId}/webhooks/{webhookId}.
- Lua path
app.integrations.adyen.remove_webhook- Full name
adyen.adyen_management_delete_merchants_merchant_id_webhooks_webhook_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_webhook Read
Execute official Adyen management API operation `get-merchants-merchantId-webhooks-webhookId`. Endpoint: GET /merchants/{merchantId}/webhooks/{webhookId}.
- Lua path
app.integrations.adyen.get_webhook- Full name
adyen.adyen_management_get_merchants_merchant_id_webhooks_webhook_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_webhook Write
Execute official Adyen management API operation `patch-merchants-merchantId-webhooks-webhookId`. Endpoint: PATCH /merchants/{merchantId}/webhooks/{webhookId}.
- Lua path
app.integrations.adyen.update_webhook- Full name
adyen.adyen_management_patch_merchants_merchant_id_webhooks_webhook_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_hmac_key Write
Execute official Adyen management API operation `post-merchants-merchantId-webhooks-webhookId-generateHmac`. Endpoint: POST /merchants/{merchantId}/webhooks/{webhookId}/generateHmac.
- Lua path
app.integrations.adyen.generate_hmac_key- Full name
adyen.adyen_management_post_merchants_merchant_id_webhooks_webhook_id_generate_hmac
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
test_webhook Write
Execute official Adyen management API operation `post-merchants-merchantId-webhooks-webhookId-test`. Endpoint: POST /merchants/{merchantId}/webhooks/{webhookId}/test.
- Lua path
app.integrations.adyen.test_webhook- Full name
adyen.adyen_management_post_merchants_merchant_id_webhooks_webhook_id_test
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_stores Read
Execute official Adyen management API operation `get-stores`. Endpoint: GET /stores.
- Lua path
app.integrations.adyen.get_list_stores- Full name
adyen.adyen_management_get_stores
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_store Write
Execute official Adyen management API operation `post-stores`. Endpoint: POST /stores.
- Lua path
app.integrations.adyen.create_store- Full name
adyen.adyen_management_post_stores
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_store Read
Execute official Adyen management API operation `get-stores-storeId`. Endpoint: GET /stores/{storeId}.
- Lua path
app.integrations.adyen.get_store- Full name
adyen.adyen_management_get_stores_store_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_store Write
Execute official Adyen management API operation `patch-stores-storeId`. Endpoint: PATCH /stores/{storeId}.
- Lua path
app.integrations.adyen.update_store- Full name
adyen.adyen_management_patch_stores_store_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_terminal_logo Read
Execute official Adyen management API operation `get-stores-storeId-terminalLogos`. Endpoint: GET /stores/{storeId}/terminalLogos.
- Lua path
app.integrations.adyen.get_terminal_logo- Full name
adyen.adyen_management_get_stores_store_id_terminal_logos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_terminal_logo Write
Execute official Adyen management API operation `patch-stores-storeId-terminalLogos`. Endpoint: PATCH /stores/{storeId}/terminalLogos.
- Lua path
app.integrations.adyen.update_terminal_logo- Full name
adyen.adyen_management_patch_stores_store_id_terminal_logos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_terminal_settings Read
Execute official Adyen management API operation `get-stores-storeId-terminalSettings`. Endpoint: GET /stores/{storeId}/terminalSettings.
- Lua path
app.integrations.adyen.get_terminal_settings- Full name
adyen.adyen_management_get_stores_store_id_terminal_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_terminal_settings Write
Execute official Adyen management API operation `patch-stores-storeId-terminalSettings`. Endpoint: PATCH /stores/{storeId}/terminalSettings.
- Lua path
app.integrations.adyen.update_terminal_settings- Full name
adyen.adyen_management_patch_stores_store_id_terminal_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_list_terminals Read
Execute official Adyen management API operation `get-terminals`. Endpoint: GET /terminals.
- Lua path
app.integrations.adyen.get_list_terminals- Full name
adyen.adyen_management_get_terminals
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_terminal_action Write
Execute official Adyen management API operation `post-terminals-scheduleActions`. Endpoint: POST /terminals/scheduleActions.
- Lua path
app.integrations.adyen.create_terminal_action- Full name
adyen.adyen_management_post_terminals_schedule_actions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
reassign_terminal Write
Execute official Adyen management API operation `post-terminals-terminalId-reassign`. Endpoint: POST /terminals/{terminalId}/reassign.
- Lua path
app.integrations.adyen.reassign_terminal- Full name
adyen.adyen_management_post_terminals_terminal_id_reassign
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_terminal_logo Read
Execute official Adyen management API operation `get-terminals-terminalId-terminalLogos`. Endpoint: GET /terminals/{terminalId}/terminalLogos.
- Lua path
app.integrations.adyen.get_terminal_logo- Full name
adyen.adyen_management_get_terminals_terminal_id_terminal_logos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_logo Write
Execute official Adyen management API operation `patch-terminals-terminalId-terminalLogos`. Endpoint: PATCH /terminals/{terminalId}/terminalLogos.
- Lua path
app.integrations.adyen.update_logo- Full name
adyen.adyen_management_patch_terminals_terminal_id_terminal_logos
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_terminal_settings Read
Execute official Adyen management API operation `get-terminals-terminalId-terminalSettings`. Endpoint: GET /terminals/{terminalId}/terminalSettings.
- Lua path
app.integrations.adyen.get_terminal_settings- Full name
adyen.adyen_management_get_terminals_terminal_id_terminal_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_terminal_settings Write
Execute official Adyen management API operation `patch-terminals-terminalId-terminalSettings`. Endpoint: PATCH /terminals/{terminalId}/terminalSettings.
- Lua path
app.integrations.adyen.update_terminal_settings- Full name
adyen.adyen_management_patch_terminals_terminal_id_terminal_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||