Test Payments Integration
Test payments integration.
An integration connects an external provider to this module. Configure the provider and its secrets in the dashboard; the API lets you list, create or update, enable, disable, set a default, and test integrations. Tests the payments integration.
This method is on the Hub surface (norbix.hub.payments) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.payments.testPaymentsIntegration({
integrationId: 'int_4kX9mQvR2tYw7ZbC1dFgHj',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Payments.TestPaymentsIntegrationAsync(new TestPaymentsIntegration
{
IntegrationId = "int_4kX9mQvR2tYw7ZbC1dFgHj",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.payments.test_payments_integration(
integrationId="int_4kX9mQvR2tYw7ZbC1dFgHj",
)In the dashboard
Manage this visually in Norbix Cloud — see Payments → Integrations.
API reference
Full request and response for this endpoint: Test Payments Integration.
Last updated