Know where to start

Get access to our Sandbox Backoffice by receiving the login URL and setting up your login credentials.

Choose the integration type that fits your product: Hosted Payment Page, Hosted Fields, or Direct API. Find out useful reseources to help you choose below.

Set up API keys, webhooks, and other essential settings to prepare your account for testing.

Run tests with a default Test PSP added to your Sandbox Account. Depending on your selected integration type perform tests to validate your integration.

Once testing and validation are successful, go livecessing real payments securely. Check out our Go-live Checklist for a smooth going live process.

Hosted Payment Page

Quickly launch a secure checkout experience hosted by us — ideal for fast integration and minimal PCI scope.

Hosted Elements

Embed secure payment fields directly in your UI while maintaining full control of the checkout experience.

Direct API

Build custom payment flows with our flexible REST API — ideal for complete control and advanced integrations.

Set up your Account

Prepare your environment by generating secure API credentials and configuring webhooks to receive payment notifications.

Set up your Postman

Import our Postman collection and configure your environment with apiURL, apiKeyPrivate, and apiKeyPublic variables to start testing.

Import Collection

Postman Environment

VariableValue
apiURLhttps://api.sandbox.norbr.io/v1
apiKeyPublicYour Public Key
apiKeyPrivateYour Private API Key

Postman Automation Scripts

// Checkout creation
var response = pm.response.json();
pm.environment.set('checkout', response.checkout.checkout_id);

// Token creation
var response = pm.response.json();
pm.environment.set('token', response.token);
pm.environment.set('metatoken', response.meta_token);

// Order creation
var response = pm.response.json();
pm.environment.set('orderId', response.order_id);