SDK to facilitate Node integrations with Stark Bank
npm install starkbankWelcome to the Stark Bank Node SDK! This tool is made for Node
developers who want to easily integrate with our API.
This SDK version is compatible with the Stark Bank API v2.
If you have no idea what Stark Bank is, check out our website
and discover a world where receiving or making payments
is as easy as sending a text message to your client!
- Introduction
- Supported Node versions
- API documentation
- Versioning
- Setup
- Install our SDK
- Create your Private and Public Keys
- Register your user credentials
- Setting up the user
- Setting up the error language
- Resource listing and manual pagination
- Testing in Sandbox
- Usage
- Transactions: Account statement entries
- Balance: Account balance
- Transfers: Wire transfers (TED and manual Pix)
- DictKeys: Pix Key queries to use with Transfers
- Institutions: Institutions recognized by the Central Bank
- Invoices: Reconciled receivables (dynamic Pix QR Codes)
- DynamicBrcode: Simplified reconciled receivables (dynamic Pix QR Codes)
- Deposits: Other cash-ins (static Pix QR Codes, DynamicBrcodes, manual Pix, etc)
- Boletos: Boleto receivables
- BoletoHolmes: Boleto receivables investigator
- BrcodePayments: Pay Pix QR Codes
- BoletoPayments: Pay Boletos
- UtilityPayments: Pay Utility bills (water, light, etc.)
- TaxPayments: Pay taxes
- DarfPayments: Pay DARFs
- PaymentPreviews: Preview all sorts of payments
- PaymentRequest: Request a payment approval to a cost center
- CorporateHolders: Manage cardholders
- CorporateCards: Create virtual and/or physical cards
- CorporateInvoices: Add money to your corporate balance
- CorporateWithdrawals: Send money back to your Workspace from your corporate balance
- CorporateBalance: View your corporate balance
- CorporateTransactions: View the transactions that have affected your corporate balance
- CorporateEnums: Query enums related to the corporate purchases, such as merchant categories, countries and card purchase methods
- MerchantCard: Stores information about approved purchase cards for reuse
- MerchantSession: Manages a session to create a purchase with a new card
- MerchantPurchase: Allows a merchant to charge their customers using debit or credit cards
- MerchantInstallment: Tracks the lifecycle of purchase installments
- Webhooks: Configure your webhook endpoints and subscriptions
- WebhookEvents: Manage webhook events
- WebhookEventAttempts: Query failed webhook event deliveries
- Workspaces: Manage your accounts
- Request: Send a custom request to Stark Bank. This can be used to access features that haven't been mapped yet.
- Handling errors
- Help and Feedback
This library supports the following Node versions:
* Node 10+
If you have specific version demands for your projects, feel free to contact us.
Feel free to take a look at our API docs.
This project adheres to the following versioning pattern:
Given a version number MAJOR.MINOR.PATCH, increment:
- MAJOR version when the API version is incremented. This may include backwards incompatible changes;
- MINOR version when breaking changes are introduced OR new functionalities are added in a backwards compatible manner;
- PATCH version when backwards compatible bug fixes are implemented.
1.1 To install the package with npm, run:
``sh`
npm install starkbank
We use ECDSA. That means you need to generate a secp256k1 private
key to sign your requests to our API, and register your public key
with us so we can validate those requests.
You can use one of following methods:
2.1. Check out the options in our tutorial.
2.2. Use our SDK:
`javascript
const starkbank = require('starkbank');
let privateKey, publicKey;
[privateKey, publicKey] = starkbank.key.create();
// or, to also save .pem files in a specific path
[privateKey, publicKey] = starkbank.key.create('file/keys/');
`
You can interact directly with our API using two types of users: Projects and Organizations.
- Projects are workspace-specific users, that is, they are bound to the workspaces they are created in.
One workspace can have multiple Projects.
- Organizations are general users that control your entire organization.
They can control all your Workspaces and even create new ones. The Organization is bound to your company's tax ID only.
Since this user is unique in your entire organization, only one credential can be linked to it.
3.1. To create a Project in Sandbox:
3.1.1. Log into Starkbank Sandbox
3.1.2. Go to Menu > Integrations
3.1.3. Click on the "New Project" button
3.1.4. Create a Project: Give it a name and upload the public key you created in section 2
3.1.5. After creating the Project, get its Project ID
3.1.6. Use the Project ID and private key to create the object below:
`javascript
const starkbank = require('starkbank');
// Get your private key from an environment variable or an encrypted database.
// This is only an example of a private key content. You should use your own key.
let privateKeyContent =
-----BEGIN EC PARAMETERS-----
BgUrgQQACg==
-----END EC PARAMETERS-----
-----BEGIN EC PRIVATE KEY-----
MHQCAQEEIMCwW74H6egQkTiz87WDvLNm7fK/cA+ctA2vg/bbHx3woAcGBSuBBAAK
oUQDQgAE0iaeEHEgr3oTbCfh8U2L+r7zoaeOX964xaAnND5jATGpD/tHec6Oe9U1
IF16ZoTVt1FzZ8WkYQ3XomRD4HS13A==
-----END EC PRIVATE KEY-----;
let project = new starkbank.Project({
environment: 'sandbox',
id: '5656565656565656',
privateKey: privateKeyContent
});
`
3.2. To create Organization credentials in Sandbox:
3.2.1. Log into Starkbank Sandbox
3.2.2. Go to Menu > Integrations
3.2.3. Click on the "Organization public key" button
3.2.4. Upload the public key you created in section 2 (only a legal representative of the organization can upload the public key)
3.2.5. Click on your profile picture and then on the "Organization" menu to get the Organization ID
3.2.6. Use the Organization ID and private key to create the object below:
`javascript
const starkbank = require('starkbank');
// Get your private key from an environment variable or an encrypted database.
// This is only an example of a private key content. You should use your own key.
let privateKeyContent =
-----BEGIN EC PARAMETERS-----
BgUrgQQACg==
-----END EC PARAMETERS-----
-----BEGIN EC PRIVATE KEY-----
MHQCAQEEIMCwW74H6egQkTiz87WDvLNm7fK/cA+ctA2vg/bbHx3woAcGBSuBBAAK
oUQDQgAE0iaeEHEgr3oTbCfh8U2L+r7zoaeOX964xaAnND5jATGpD/tHec6Oe9U1
IF16ZoTVt1FzZ8WkYQ3XomRD4HS13A==
-----END EC PRIVATE KEY-----;
let organization = new starkbank.Organization({
id: '5656565656565656',
privateKey: privateKeyContent,
environment: 'sandbox',
workspaceId: null // You only need to set the workspaceId when you are operating a specific workspaceId
});
// To dynamically use your organization credentials in a specific workspaceId,
// you can use the organization.replace() method:
(async() => {
let balance = await starkbank.balance.get({
user: starkbank.organization.replace(organization, '4848484848484848')
});
console.log(balance);
})();
`
NOTE 1: Never hard-code your private key. Get it from an environment variable or an encrypted database.
NOTE 2: We support 'sandbox' and 'production' as environments.
NOTE 3: The credentials you registered in sandbox do not exist in production and vice versa.
There are three kinds of users that can access our API: Organization, Project and Member.
- Project and Organization are designed for integrations and are the ones meant for our SDKs.Member
- is the one you use when you log into our webpage with your e-mail.
There are two ways to inform the user to the SDK:
4.1 Passing the user as argument in all functions:
`javascript`
const starkbank = require('starkbank');
(async() => {
let balance = await starkbank.balance.get({user: project}); // or organization
})();
4.2 Set it as a default user in the SDK:
`javascript
const starkbank = require('starkbank');
starkbank.user = project; // or organization
(async() => {
let balance = await starkbank.balance.get();
})();
`
And now you can use module import with setUser:
`javascript
import * as starkbank from 'starkbank';
starkbank.setUser(project); // or organization
(async() => {
let balance = await starkbank.balance.get();
})();
`
Just select the way of passing the user that is more convenient to you.
On all following examples we will assume a default user has been set.
The error language can also be set in the same way as the default user:
`javascript
const starkbank = require('starkbank');
starkbank.language = 'en-US';
`
Language options are 'en-US' for english and 'pt-BR' for brazilian portuguese. English is default.
Almost all SDK resources provide a query and a page function.
- The query function provides a straight forward way to efficiently iterate through all results that match the filters you inform,
seamlessly retrieving the next batch of elements from the API only when you reach the end of the current batch.
If you are not worried about data volume or processing time, this is the way to go.
`javascript
const starkbank = require('starkbank');
(async() => {
let transactions = await starkbank.transaction.query({
after: '2020-01-01',
before: '2020-03-01',
});
for await (let transaction of transactions) {
console.log(transaction);
}
})();
`
- The page function gives you full control over the API pagination. With each function call, you receive up tonull
100 results and the cursor to retrieve the next batch of elements. This allows you to stop your queries and
pick up from where you left off whenever it is convenient. When there are no more elements to be retrieved, the returned cursor will be .
`javascript
const starkbank = require('starkbank');
(async() => {
let cursor = null;
let page = null;
while (true) {
[page, cursor] = await starkbank.transaction.page({ limit: 5, cursor: cursor });
for (let transaction of page) {
console.log(transaction);
}
if (cursor == null) {
break;
}
}
})();
`
To simplify the following SDK examples, we will only use the query function, but feel free to use page instead.
Your initial balance is zero. For many operations in Stark Bank, you'll need funds
in your account, which can be added to your balance by creating an Invoice or a Boleto.
In the Sandbox environment, most of the created Invoices and Boletos will be automatically paid,
so there's nothing else you need to do to add funds to your account. Just create
a few Invoices and wait around a bit.
In Production, you (or one of your clients) will need to actually pay this Invoice or Boleto
for the value to be credited to your account.
Here are a few examples on how to use the SDK. If you have any doubts, use the built-in
help() function to get more info on the desired functionalityhelp(starkbank.boleto.create)
(for example: )
To send money between Stark Bank accounts, you can create transactions:
`javascript
const starkbank = require('starkbank');
(async() => {
let transactions = await starkbank.transaction.create([
{
amount: 100, // (R$ 1.00)
receiverId: '1029378109327810',
description: 'Transaction to dear provider',
externalId: '12345', // so we can block anything you send twice by mistake
tags: ['provider']
},
{
amount: 234, // (R$ 2.34)
receiverId: '2093029347820947',
description: 'Transaction to the other provider',
externalId: '12346', // so we can block anything you send twice by mistake
tags: ['provider']
},
])
for (let transaction of transactions) {
console.log(transaction);
}
})();
`
Note: Instead of using dictionary objects, you can also pass each invoice element in the native Transaction object format
To understand your balance changes (bank statement), you can query
transactions. Note that our system creates transactions for you when
you receive boleto payments, pay a bill or make transfers, for example.
`javascript
const starkbank = require('starkbank');
(async() => {
let transactions = await starkbank.transaction.query({
after: '2020-01-01',
before: '2020-03-01',
});
for await (let transaction of transactions) {
console.log(transaction);
}
})();
`
You can get a specific transaction by its id:
`javascript
const starkbank = require('starkbank');
(async() => {
let transaction = await starkbank.transaction.get('5155165527080960');
console.log(transaction);
})();
`
To know how much money you have in your workspace, run:
`javascript
const starkbank = require('starkbank');
(async() => {
let balance = await starkbank.balance.get();
console.log(balance);
})();
`
You can also create transfers in the SDK (TED/Pix) and configure transfer behavior according to its rules.
`javascript
const starkbank = require('starkbank');
(async() => {
let transfers = await starkbank.transfer.create([
{
amount: 100,
bankCode: '20018183', // Pix
branchCode: '0001',
accountNumber: '10000-0',
accountType: "salary",
externalId: "my-internal-id-12345",
taxId: '276.685.415-00',
name: 'Tony Stark',
tags: ['iron', 'suit']
},
{
amount: 200,
bankCode: '341', // TED
branchCode: '1234',
accountNumber: '123456-7',
taxId: '372.864.795-04',
name: 'Jon Snow',
scheduled: '2021-09-08',
tags: [],
rules: [
new starkbank.transfer.Rule({
key: "resendingLimit", // Set maximum number of retries if Transfer fails due to systemic issues at the receiver bank
value: 5 // Our resending limit is 10 by default
})
]
}
])
for (let transfer of transfers) {
console.log(transfer);
}
})();
`
Note: Instead of using dictionary objects, you can also pass each invoice element in the native Transfer object format
You can query multiple transfers according to filters.
`javascript
const starkbank = require('starkbank');
(async() => {
let transfers = await starkbank.transfer.query({
after: '2020-03-01',
before: '2020-03-30',
});
for await (let transfer of transfers) {
console.log(transfer);
}
})();
`
To get a single transfer by its id, run:
`javascript
const starkbank = require('starkbank');
(async() => {
let transfer = await starkbank.transfer.get('5155165527080960');
console.log(transfer);
})();
`
To cancel a single scheduled transfer by its id, run:
`javascript
const starkbank = require('starkbank');
(async() => {
let transfer = await starkbank.transfer.delete('5155165527080960');
console.log(transfer);
})();
`
After its creation, a transfer PDF may also be retrieved by passing its id.
`javascript
const starkbank = require('starkbank');
const fs = require('fs').promises;
(async() => {
let pdf = await starkbank.transfer.pdf('5155165527080960');
await fs.writeFile('transfer.pdf', pdf);
})();
`
Be careful not to accidentally enforce any encoding on the raw pdf content,
as it may yield abnormal results in the final file, such as missing images
and strange characters.
You can query transfer logs to better understand transfer life cycles.
`javascript
const starkbank = require('starkbank');
(async() => {
let logs = await starkbank.transfer.log.query({limit: 50});
for await (let log of logs) {
console.log(log);
}
})();
`
You can also get a specific log by its id.
`javascript
const starkbank = require('starkbank');
(async() => {
let log = await starkbank.transfer.log.get('5155165527080960');
console.log(log);
})();
`
You can get DICT (Pix) key's parameters by its id.
`javascript
const starkbank = require('starkbank');
(async() => {
let dictKey = await starkbank.dictKey.get('tony@starkbank.com');
console.log(dictKey);
})();
`
To take a look at the DICT keys linked to your workspace, just run the following:
`javascript
const starkbank = require('starkbank');
(async() => {
let dictKeys = await starkbank.dictKey.query({
limit: 5,
status: 'registered',
type: 'evp'
});
for await (let dictKey of dictKeys) {
console.log(dictKey);
}
})();
`
You can query institutions registered by the Brazilian Central Bank for Pix and TED transactions.
`javascript
const starkbank = require('starkbank');
(async() => {
let institutions = await starkbank.institution.query({ limit: 5, search: 'stark' });
for (let institution of institutions) {
console.log(institution);
}
})();
`
You can create dynamic QR Code invoices to charge customers or to receive money from accounts you have in other banks.
Since the banking system only understands value modifiers (discounts, fines and interest) when dealing with dates (instead of datetimes), these values will only show up in the end user banking interface if you use dates in the "due" and "discounts" fields.
If you use datetimes instead, our system will apply the value modifiers in the same manner, but the end user will only see the final value to be paid on his interface.
Also, other banks will most likely only allow payment scheduling on invoices defined with dates instead of datetimes.
`javascript
const starkbank = require('starkbank');
(async() => {
let invoices = await starkbank.invoice.create([
{
amount: 248,
descriptions: [
{
'key': 'Arya',
'value': 'Not today'
}
],
discounts: [
{
'percentage': 10,
'due': '2020-11-25T17:59:26.249976+00:00'
}
],
due: '2020-11-29T17:59:26.249976+00:00',
expiration: 123456789,
fine: 2.5,
interest: 1.3,
name: 'Arya Stark',
tags: [
'New sword',
'Invoice #1234'
],
taxId: '29.176.331/0001-69'
}
]);
for (let invoice of invoices) {
console.log(invoice);
}
})();
`
Note: Instead of using dictionary objects, you can also pass each invoice element in the native Invoice object format
After its creation, information on an invoice may be retrieved by its id.
Its status indicates whether it's been paid.
`javascript
const starkbank = require('starkbank');
(async() => {
let invoice = await starkbank.invoice.get('5400193516175360')
console.log(invoice);
})();
`
After its creation, an invoice QR Code png file blob may be retrieved by its id.
`javascript
const starkbank = require('starkbank');
const fs = require('fs').promises;
(async() => {
let png = await starkbank.invoice.qrcode('5400193516175360')
await fs.writeFile('invoice.png', png);
})();
`
Be careful not to accidentally enforce any encoding on the raw png content,
as it may yield abnormal results in the final file.
After its creation, an invoice PDF may be retrieved by its id.
`javascript
const starkbank = require('starkbank');
const fs = require('fs').promises;
(async() => {
let pdf = await starkbank.invoice.pdf('5400193516175360')
await fs.writeFile('invoice.pdf', pdf);
})();
`
Be careful not to accidentally enforce any encoding on the raw pdf content,
as it may yield abnormal results in the final file, such as missing images
and strange characters.
You can also cancel an invoice by its id.
Note that this is not possible if it has been paid already.
`javascript
const starkbank = require('starkbank');
(async() => {
let invoice = await starkbank.invoice.update('5047198572085248', {status: 'canceled'});
console.log(invoice);
})();
`
You can update an invoice's amount, due date and expiration by its id.
If the invoice has already been paid, only the amount can be
decreased, which will result in a payment reversal. To fully reverse
the invoice, pass amount: 0.
`javascript
const starkbank = require('starkbank');
(async() => {
let invoice = await starkbank.invoice.update(
'5047198572085248',
{
amount: 1000,
due: '2020-12-25T17:59:26.249976+00:00',
expiration: 123456 // in seconds
}
);
console.log(invoice);
})();
`
You can get a list of created invoices given some filters.
`javascript
const starkbank = require('starkbank');
(async() => {
let invoices = await starkbank.invoice.query({
limit: 5,
after: '2020-04-01',
before: '2020-11-30',
status: 'paid'
});
for await (let invoice of invoices) {
console.log(invoice);
}
})();
`
Logs are pretty important to understand the life cycle of an invoice.
`javascript
const starkbank = require('starkbank');
(async() => {
let invoices = await starkbank.invoice.log.query({limit: 10});
for await (let invoice of invoices) {
console.log(invoice);
}
})();
`
You can get a single log by its id.
`javascript
const starkbank = require('starkbank');
(async() => {
let invoice = await starkbank.invoice.log.get('5400193516175360')
console.log(invoice);
})();
`
Whenever an Invoice is successfully reversed, a reversed log will be created.
To retrieve a specific reversal receipt, you can request the corresponding log PDF:
`javascript
const starkbank = require('starkbank');
const fs = require('fs').promises;
(async() => {
let pdf = await starkbank.invoice.log.pdf('5400193516175360')
await fs.writeFile('invoice-log.pdf', pdf);
})();
`
Be careful not to accidentally enforce any encoding on the raw pdf content,
as it may yield abnormal results in the final file, such as missing images
and strange characters.
Once an invoice has been paid, you can get the payment information using the Invoice.Payment sub-resource:
`javascript
const starkbank = require('starkbank');
(async() => {
let paymentInformation = starkbank.invoice.payment("5155165527080960")
console.log(paymentInformation);
})();
`
You can create simplified dynamic QR Codes to receive money using Pix transactions.
When a DynamicBrcode is paid, a Deposit is created with the tags parameter containing the character “dynamic-brcode/” followed by the DynamicBrcode’s uuid "dynamic-brcode/{uuid}" for conciliation.
The differences between an Invoice and the DynamicBrcode are the following:
| | Invoice | DynamicBrcode |
|-----------------------|:-------:|:-------------:|
| Expiration | ✓ | ✓ |
| Can only be paid once | ✓ | ✓ |
| Due, fine and fee | ✓ | X |
| Discount | ✓ | X |
| Description | ✓ | X |
| Can be updated | ✓ | X |
Note: In order to check if a BR code has expired, you must first calculate its expiration date (add the expiration to the creation date).
Note: To know if the BR code has been paid, you need to query your Deposits by the tag "dynamic-brcode/{uuid}" to check if it has been paid.
`javascript
const starkbank = require('starkbank');
(async() => {
const brcodes = await starkbank.dynamicBrcode.create([
{
amount: 23571, // R$ 235,71
expiration: 3 * 3600
},
{
amount: 23571, // R$ 235,71
expiration: 3 * 3600
}
])
for await (let brcode of brcodes) {
console.log(brcode);
}
})();
`
Note: Instead of using DynamicBrcode objects, you can also pass each brcode element in dictionary format
After its creation, information on a DynamicBrcode may be retrieved by its uuid.
`javascript
const starkbank = require('starkbank');
(async() => {
let brcode = await starkbank.dynamicBrcode.get('bb9cd43ea6f4403391bf7ef6aa876600')
console.log(brcode);
})();
`
You can get a list of created DynamicBrcodes given some filters.
`javascript
const starkbank = require('starkbank');
(async() => {
let brcodes = await starkbank.dynamicBrcode.query({
after: '2023-01-01',
before: '2023-03-01',
});
for await (let brcode of brcodes) {
console.log(brcode);
}
})();
`
You can get a list of created deposits given some filters.
`javascript
const starkbank = require('starkbank');
(async() => {
let deposits = await starkbank.deposit.query({
limit: 5,
after: '2020-04-01',
before: '2020-11-30',
});
for await (let deposit of deposits) {
console.log(deposit);
}
})();
`
After its creation, information on a deposit may be retrieved by its id.
`javascript
const starkbank = require('starkbank');
(async() => {
let deposit = await starkbank.deposit.get('5400193516175360')
console.log(deposit);
})();
`
You can update a deposit amount by its id. The amount can only be decreased, which will result in a payment reversal. To fully reverse the deposit, pass amount = 0.
`javascript
const starkbank = require('starkbank');
(async() => {
let deposit = await starkbank.deposit.update(
'5155165527080960',
{
amount: 0
}
);
console.log(deposit);
})();
`
Logs are pretty important to understand the life cycle of a deposit.
`javascript
const starkbank = require('starkbank');
(async() => {
let deposits = await starkbank.deposit.log.query({limit: 10});
for await (let deposit of deposits) {
console.log(deposit);
}
})();
`
You can get a single log by its id.
`javascript
const starkbank = require('starkbank');
(async() => {
let deposit = await starkbank.deposit.log.get('5400193516175360')
console.log(deposit);
})();
`
You can create boletos to charge customers or to receive money from accounts
you have in other banks.
`javascript
const starkbank = require('starkbank');
(async() => {
let boletos = await starkbank.boleto.create([
{
amount: 23571, // R$ 235,71
name: 'Buzz Aldrin',
taxId: '012.345.678-90',
streetLine1: 'Av. Paulista, 200',
streetLine2: '10 andar',
district: 'Bela Vista',
city: 'São Paulo',
stateCode: 'SP',
zipCode: '01310-000',
due: '2020-04-30',
fine: 5, // 5%
interest: 2.5, // 2.5% per month
},
]);
for (let boleto of boletos) {
console.log(boleto);
}
})();
`
Note: Instead of using dictionary objects, you can also pass each invoice element in the native Boleto object format
You can get a list of created boletos given some filters.
`javascript
const starkbank = require('starkbank');
(async() => {
let boletos = await starkbank.boleto.query({
limit: 150,
after: '2020-03-01',
before: '2020-03-30',
});
for await (let boleto of boletos) {
console.log(boleto);
}
})();
`
After its creation, information on a boleto may be retrieved by passing its id.
Its status indicates whether it's been paid.
`javascript
const starkbank = require('starkbank');
(async() => {
let boleto = await starkbank.boleto.get('5155165527080960')
console.log(boleto);
})();
`
After its creation, a boleto PDF may be retrieved by passing its id.
`javascript
const starkbank = require('starkbank');
const fs = require('fs').promises;
(async() => {
let pdf = await starkbank.boleto.pdf('5155165527080960', { layout: 'default' });
await fs.writeFile('boleto.pdf', pdf);
})();
`
Be careful not to accidentally enforce any encoding on the raw pdf content,
as it may yield abnormal results in the final file, such as missing images
and strange characters.
You can also cancel a boleto by its id.
Note that this is not possible if it has been processed already.
`javascript
const starkbank = require('starkbank');
(async() => {
let boleto = await starkbank.boleto.delete('5155165527080960');
console.log(boleto);
})();
`
Logs are pretty important to understand the life cycle of a boleto.
`javascript
const starkbank = require('starkbank');
(async() => {
let logs = await starkbank.boleto.log.query({limit: 100});
for await (let log of logs) {
console.log(log);
}
})();
`
You can get a single log by its id.
`javascript
const starkbank = require('starkbank');
(async() => {
let log = await starkbank.boleto.log.get('5155165527080960');
console.log(log);
})();
`
You can discover if a StarkBank boleto has been recently paid before we receive the response on the next day.
This can be done by creating a BoletoHolmes object, which fetches the updated status of the corresponding
Boleto object according to CIP to check, for example, whether it is still payable or not.
`javascript
const starkbank = require('starkbank');
(async() => {
let payments = await starkbank.boletoHolmes.create([
{
boletoId: '5656565656565656'
},
{
boletoId: '4848484848484848',
tags: ['test']
},
])
for (let payment of payments) {
console.log(payment);
}
})();
`
To get a single boleto holmes by its id, run:
`javascript
const starkbank = require('starkbank');
(async() => {
let sherlock = await starkbank.boletoHolmes.get('5155165527080960');
console.log(sherlock);
})();
`
You can search for boleto holmes using filters.
`javascript
const starkbank = require('starkbank');
(async() => {
let holmes = await starkbank.boletoHolmes.query({
after: '2020-03-01',
before: '2020-03-30',
});
for await (let sherlock of holmes) {
console.log(sherlock);
}
})();
`
Searches are also possible with boleto holmes logs:
`javascript
const starkbank = require('starkbank');
(async() => {
let logs = await starkbank.boletoHolmes.log.query({
after: '2020-03-01',
before: '2020-03-30',
});
for await (let log of logs) {
console.log(log);
}
})();
`
You can also get a boleto holmes log by specifying its id.
`javascript
const starkbank = require('starkbank');
(async() => {
let log = await starkbank.boletoHolmes.log.get('5155165527080960');
console.log(log);
})();
`
Paying a BR Code is also simple.
`javascript
const starkbank = require('starkbank');
(async() => {
let payments = await starkbank.brcodePayment.create([
{
brcode: "00020126580014br.gov.bcb.pix0136a629532e-7693-4846-852d-1bbff817b5a8520400005303986540510.005802BR5908T'Challa6009Sao Paulo62090505123456304B14A",
taxId: '20.018.183/0001-80',
description: "Tony Stark's Suit",
amount: 7654321,
scheduled: '2020-02-29',
tags: ['Stark', 'Suit'],
rules: [
new starkbank.brcodePayment.Rule({
key: "resendingLimit", // Set maximum number of retries if Payment fails due to systemic issues at the receiver bank
value: 5 // Our resending limit is 10 by default
})
]
},
]);
for (let payment of payments) {
console.log(payment);
}
})();
`
Note: You can also configure payment behavior according to its rules
Note: Instead of using dictionary objects, you can also pass each invoice element in the native BrcodePayment object format
To get a single BR Code payment by its id, run:
`javascript
const starkbank = require('starkbank');
(async() => {
let payment = await starkbank.brcodePayment.get('5155165527080960')
console.log(payment);
})();
`
After its creation, a BR Code payment PDF may be retrieved by its id.
`javascript
const starkbank = require('starkbank');
const fs = require('fs').promises;
(async() => {
let pdf = await starkbank.brcodePayment.pdf('5155165527080960', { layout: 'default' });
await fs.writeFile('brcode-payment.pdf', pdf);
})();
`
Be careful not to accidentally enforce any encoding on the raw pdf content,
as it may yield abnormal results in the final file, such as missing images
and strange characters.
You can cancel a BR Code payment by changing its status to "canceled".
Note that this is not possible if it has been processed already.
`javascript
const starkbank = require('starkbank');
(async() => {
let payment = await starkbank.brcodePayment.update('5047198572085248', {status: 'canceled'});
console.log(payment);
})();
`
You can search for BR Code payments using filters.
`javascript
const starkbank = require('starkbank');
(async() => {
let payments = await starkbank.brcodePayment.query({
after: '2020-03-01',
before: '2020-03-30',
});
for await (let payment of payments) {
console.log(payment);
}
})();
`
Searches are also possible with BR Code payment logs:
`javascript
const starkbank = require('starkbank');
(async() => {
let logs = await starkbank.brcodePayment.log.query({
after: '2020-03-01',
before: '2020-03-30',
});
for await (let log of logs) {
console.log(log);
}
})();
`
You can also get a BR Code payment log by specifying its id.
`javascript
const starkbank = require('starkbank');
(async() => {
let log = await starkbank.brcodePayment.log.get('5155165527080960');
console.log(log);
})();
`
Paying boletos is also simple.
`javascript
const starkbank = require('starkbank');
(async() => {
let payments = await starkbank.boletoPayment.create([
{
taxId: '012.345.678-90',
description: 'take my money',
scheduled: '2023-03-13',
line: '34191.09008 64694.017308 71444.640008 1 96610000014500',
tags: ['take', 'my', 'money'],
},
{
taxId: '012.345.678-90',
description: 'take my money one more time',
scheduled: '2023-03-14',
barCode: '34191972300000289001090064694197307144464000',
tags: ['again'],
},
])
for (let payment of payments) {
console.log(payment);
}
})();
`
To get a single boleto payment by its id, run:
`javascript
const starkbank = require('starkbank');
(async() => {
let payment = await starkbank.boletoPayment.get('5155165527080960');
console.log(payment);
})();
`
After its creation, a boleto payment PDF may be retrieved by passing its id.
`javascript
const starkbank = require('starkbank');
const fs = require('fs').promises;
(async() => {
let pdf = await starkbank.boletoPayment.pdf('5155165527080960');
await fs.writeFile('boleto-payment.pdf', pdf);
})();
`
Be careful not to accidentally enforce any encoding on the raw pdf content,
as it may yield abnormal results in the final file, such as missing images
and strange characters.
You can also cancel a boleto payment by its id.
Note that this is not possible if it has been processed already.
`javascript
const starkbank = require('starkbank');
(async() => {
let payment = await starkbank.boletoPayment.delete('5155165527080960');
console.log(payment);
})();
`
You can search for boleto payments using filters.
`javascript
const starkbank = require('starkbank');
(async() => {
let payments = await starkbank.boletoPayment.query({
after: '2020-03-01',
before: '2020-03-30',
});
for await (let payment of payments) {
console.log(payment);
}
})();
`
Searches are also possible with boleto payment logs:
`javascript
const starkbank = require('starkbank');
(async() => {
let logs = await starkbank.boletoPayment.log.query({
after: '2020-03-01',
before: '2020-03-30',
});
for await (let log of logs) {
console.log(log);
}
})();
`
You can also get a boleto payment log by specifying its id.
`javascript
const starkbank = require('starkbank');
(async() => {
let log = await starkbank.boletoPayment.log.get('5155165527080960');
console.log(log);
})();
`
Its also simple to pay utility bills (such electricity and water bills) in the SDK.
`javascript
const starkbank = require('starkbank');
(async() => {
let payments = await starkbank.utilityPayment.create([
{
line: '83680000001 7 08430138003 0 71070987611 8 00041351685 7',
scheduled: '2020-03-13',
description: 'take my money',
tags: ['take', 'my', 'money'],
},
{
barCode: '83600000001522801380037107172881100021296561',
scheduled: '2020-03-14',
description: 'take my money one more time',
tags: ['again'],
},
]);
for await (let payment of payments) {
console.log(payment);
}
})();
`
Note: Instead of using dictionary objects, you can also pass each invoice element in the native UtilityPayment object format
To search for utility payments using filters, run:
`javascript
const starkbank = require('starkbank');
(async() => {
let payments = await starkbank.utilityPayment.query({
tags: ['electricity', 'gas'],
});
for await (let payment of payments) {
console.log(payment);
}
})();
`
You can get a specific bill by its id:
`javascript
const starkbank = require('starkbank');
(async() => {
let payment = await starkbank.utilityPayment.get('5155165527080960');
console.log(payment);
})();
`
After its creation, a utility payment PDF may also be retrieved by passing its id.
`javascript
const starkbank = require('starkbank');
const fs = require('fs').promises;
(async() => {
let pdf = await starkbank.utilityPayment.pdf('5155165527080960');
await fs.writeFile('utility-payment.pdf', pdf);
})();
`
Be careful not to accidentally enforce any encoding on the raw pdf content,
as it may yield abnormal results in the final file, such as missing images
and strange characters.
You can also cancel a utility payment by its id.
Note that this is not possible if it has been processed already.
`javascript
const starkbank = require('starkbank');
(async() => {
let payment = await starkbank.utilityPayment.delete('5155165527080960');
console.log(payment);
})();
`
You can search for payment logs by specifying filters. Use this to understand the
bills life cycles.
`javascript
const starkbank = require('starkbank');
(async() => {
let logs = await starkbank.utilityPayment.log.query({
paymentIds:['102893710982379182', '92837912873981273'],
});
for await (let log of logs) {
console.log(log);
}
})();
`
If you want to get a specific payment log by its id, just run:
`javascript
const starkbank = require('starkbank');
(async() => {
let log = await starkbank.utilityPayment.log.get('5155165527080960');
console.log(log);
})();
`
Its also simple to pay taxes (such as ISS and DAS) in the SDK.
`javascript
const starkbank = require('starkbank');
(async() => {
let payments = await starkbank.taxPayment.create([
{
line: '85800000003 0 28960328203 1 56072020190 5 22109674804 0',
scheduled: '2020-08-14',
description: 'build the hospital, hopefully',
tags: ['expensive'],
},
{
barCode: '83660000001084301380074119002551100010601813',
scheduled: '2020-08-13',
description: 'fix the road',
tags: ['take', 'my', 'money'],
},
]);
for await (let payment of payments) {
console.log(payment);
}
})();
`
Note: Instead of using TaxPayment objects, you can also pass each payment element in dictionary format
To search for tax payments using filters, run:
`javascript
const starkbank = require('starkbank');
(async() => {
let payments = await starkbank.taxPayment.query({
tags: ['das', 'july'],
});
for await (let payment of payments) {
console.log(payment);
}
})();
`
You can get a specific bill by its id:
`javascript
const starkbank = require('starkbank');
(async() => {
let payment = await starkbank.taxPayment.get('5155165527080960');
console.log(payment);
})();
`
After its creation, a tax payment PDF may also be retrieved by its id.
`javascript
const starkbank = require('starkbank');
const fs = require('fs').promises;
(async() => {
let pdf = await starkbank.taxPayment.pdf('5155165527080960');
await fs.writeFile('tax-payment.pdf', pdf);
})();
`
Be careful not to accidentally enforce any encoding on the raw pdf content,
as it may yield abnormal results in the final file, such as missing images
and strange characters.
You can also cancel a tax payment by its id.
Note that this is not possible if it has been processed already.
`javascript
const starkbank = require('starkbank');
(async() => {
let payment = await starkbank.taxPayment.delete('5155165527080960');
console.log(payment);
})();
`
You can search for payments by specifying filters. Use this to understand the
bills life cycles.
`javascript
const starkbank = require('starkbank');
(async() => {
let logs = await starkbank.taxPayment.log.query({
paymentIds:['102893710982379182', '92837912873981273'],
});
for await (let log of logs) {
console.log(log);
}
})();
`
If you want to get a specific payment log by its id, just run:
`javascript
const starkbank = require('starkbank');
(async() => {
let log = await starkbank.taxPayment.log.get('5155165527080960');
console.log(log);
})();
`
Note: Some taxes can't be payed with bar codes. Since they have specific parameters, each one of them has its own
resource and routes, which are all analogous to the TaxPayment resource. The ones we currently support are:
- DarfPayment, for DARFs
If you want to manually pay DARFs without barcodes, you may create DarfPayments:
`javascript
const starkbank = require('starkbank');
(async() => {
let payments = await starkbank.darfPayment.create([
{
revenueCode: "1240",
taxId: "012.345.678-90",
competence: "2023-09-01",
referenceNumber: "2340978970",
nominalAmount: 1234,
fineAmount: 12,
interestAmount: 34,
due: "2023-03-10",
scheduled: "2023-03-10",
tags: ["DARF", "making money"],
description: "take my money",
}
]);
for await (let payment of payments) {
console.log(payment);
}
})();
`
Note: Instead of using DarfPayment objects, you can also pass each payment element in dictionary format
To search for DARF payments using filters, run:
`javascript
const starkbank = require('starkbank');
(async() => {
let payments = await starkbank.darfPayment.query({
tags: ["darf", "july"]
});
for await (let payment of payments) {
console.log(payment);
}
})();
`
You can get a specific DARF payment by its id:
`javascript
const starkbank = require('starkbank');
(async() => {
let payment = await starkbank.darfPayment.get('5155165527080960');
console.log(payment);
})();
`
After its creation, a DARF payment PDF may also be retrieved by its id.
`javascript
const starkbank = require('starkbank');
const fs = require('fs').promises;
(async() => {
let pdf = await starkbank.darfPayment.pdf('5155165527080960');
await fs.writeFile('tax-payment.pdf', pdf);
})();
`
Be careful not to accidentally enforce any encoding on the raw pdf content,
as it may yield abnormal results in the final file, such as missing images
and strange characters.
You can also cancel a DARF payment by its id.
Note that this is not possible if it has been processed already.
`javascript
const starkbank = require('starkbank');
(async() => {
let payment = await starkbank.darfPayment.delete('5155165527080960');
console.log(payment);
})();
`
You can search for payment logs by specifying filters. Use this to understand each payment life cycle.
`javascript
const starkbank = require('starkbank');
(async() => {
let logs = await starkbank.darfPayment.log.query({
limit: 10
});
for await (let log of logs) {
console.log(log);
}
})();
`
If you want to get a specific payment log by its id, just run:
`javascript
const starkbank = require('starkbank');
(async() => {
let log = await starkbank.darfPayment.log.get('1902837198237992');
console.log(log);
})();
`
You can preview multiple types of payment to confirm any information before actually paying.
If the 'scheduled' parameter is not informed, today will be assumed as the intended payment date.
Right now, the 'scheduled' parameter only has effect on BrcodePreviews.
This resource is able to preview the following types of payment:
'brcode-payment', 'boleto-payment', 'utility-payment' and 'tax-payment'
`js
const starkbank = require('starkbank');
(async() => {
let previews = await starkbank.paymentPreview.create([
new starkbank.PaymentPreview({
id: "00020126580014br.gov.bcb.pix0136a629532e-7693-4846-852d-1bbff817b5a8520400005303986540510.005802BR5908T'Challa6009Sao Paulo62090505123456304B14A",
scheduled: '2021-08-30'
}),
new starkbank.PaymentPreview({
id: '34191.09008 61207.727308 71444.640008 5 81310001234321'
})
]);
for (let preview of previews) {
console.log(preview);
}
})();
`
Note: Instead of using PaymentPreview objects, you can also pass each request element in dictionary format
You can also request payments that must pass through a specific cost center approval flow to be executed.
In certain structures, this allows double checks for cash-outs and also gives time to load your account
with the required amount before the payments take place.
The approvals can be granted at our website and must be performed according to the rules
specified in the cost center.
Note: The value of the centerId parameter can be consulted by logging into our website and going
to the desired Cost Center page.
`javascript
const starkbank = require('starkbank');
const random = require('./random.js');
let transaction = new starkbank.Transaction({
amount: 100,
receiverId: '4888651368497152',
description: 'this is my cashback',
externalId: '12345',
tags: ['provider']
});
let requests = [
new starkbank.PaymentRequest({
centerId: '5967314465849344',
payment: transaction,
due: "2020-08-03"
})
];
(async() => {
requests = await starkbank.paymentRequest.create(requests);
for await (let request of requests){
console.log(request);
}
})();
`
Note: Instead of using PaymentRequest objects, you can also pass each request element in dictionary format
To search for payment requests, run:
`javascript
const starkbank = require('starkbank');
(async() => {
let requests = await starkbank.paymentRequest.query({centerId: '5967314465849344', limit: 10});
for await (let request of requests){
console.log(request);
}
})();
`
You can create card holders to which your cards will be bound.
They support spending rules that will apply to all underlying cards.
`javascript
const starkbank = require('starkbank');
let holders = await starkbank.corporateHolder.create(
[
new starkbank.CorporateHolder({
name: "Iron Bank S.A.",
tags: ["Traveler Employee"],
rules: [
{
"name": "General USD",
"interval": "day",
"amount": 100000,
"currencyCode": "USD",
"categories": [
starkbank.MerchantCategory("services"),
starkbank.MerchantCategory("fastFoodRestaurants")
],
"countries": [
starkbank.MerchantCountry("USA")
],
"methods": [
starkbank.CardMethod(code="token")
]
}
]
permissions: [
new starkbank.corporateHolder.Permission('6253551860842496', 'project')
]
})
]
);
`
Note: Instead of using CorporateHolder objects, you can also pass each element in dictionary format
You can query multiple holders according to filters.
`javascript
const starkbank = require('starkbank');
let holders = await starkbank.corporateHolder.query();
for await (let holder of holders) {
console.log(holder);
};
`
To cancel a single Corporate Holder by its id, run:
`javascript
const starkbank = require('starkbank');
let holder = await starkbank.corporateHolder.cancel("5155165527080960");
console.log(holder);
`
To get a single Corporate Holder by its id, run:
`javascript
const starkbank = require('starkbank');
let holder = await starkbank.corporateHolder.get("5155165527080960");
console.log(holder);
`
You can query holder logs to better understand holder life cycles.
`javascript
const starkbank = require('starkbank');
let logs = await starkbank.corporateHolder.log.query({"limit": 50});
for await (log of logs) {
console.log(log);
};
`
You can also get a specific log by its id.
`javascript
const starkbank = require('starkbank');
let log = await starkbank.corporateHolder.log.get("5155165527080960");
console.log(log);
`
You can issue cards with specific spending rules.
`javascript
const starkbank = require('starkbank');
let card = await starkbank.corporateCard.create(
new starkbank.CorporateCard({
"holderId": "5155165527080960",
}
),
{"expand": ["rules", "securityCode", "number", "expiration"]}
);
console.log(card);
`
You can get a list of created cards given some filters.
`javascript
const starkbank = require('starkbank');
let cards = await starkbank.corporateCard.query({limit: 5});
for await (let card of cards) {
console.log(card);
}
`
After its creation, information on a card may be retrieved by its id.
`javascript
const starkbank = require('starkbank');
let card = await starkbank.corporateCard.get("5155165527080960");
console.log(card);
`
You can update aspecific card by its id.
`javascript
const starkbank = require('starkbank');
let card = await starkbank.corporateCard.update(holderId, {"status": "blocked"});
console.log(card);
`
You can also cancel a card by its id.
`javascript
const starkbank = require('starkbank');
let card = await starkbank.corporateCard.cancel("5155165527080960");
console.log(card);
`
Logs are pretty important to understand the life cycle of a card.
`javascript
const starkbank = require('starkbank');
let logs = await starkbank.corporateCard.log.query({ "limit": 100 });
for await (let log in logs) {
console.log(log);
}
`
You can get a single log by its id.
`javascript
const starkbank = require('starkbank');
let log = await starkbank.corporateCard.log.get("5155165527080960");
console.log(log);
`
You can get a list of created purchases given some filters.
`javascript
const starkbank = require('starkbank');
let purchases = await starkbank.corporatePurchase.query({"limit": 5});
for await (let purchase of purchases) {
console.log(purchase);
}
`
After its creation, information on a purchase may be retrieved by its id.
`javascript
const starkbank = require('starkbank');
let purchase = await starkbank.corporatePurchase.get("5155165527080960");
console.log(purchase);
`
Logs are pretty important to understand the life cycle of a purchase.
`javascript
const starkbank = require('starkbank');
let logs = await starkbank.corporatePurchase.log.query({"limit": 5});
for await (let log of logs) {
console.log(log);
}
`
You can get a single log by its id.
`javascript
const starkbank = require('starkbank');
let log = await starkbank.corporatePurchase.log.get("5155165527080960");
console.log(log);
`
You can create Pix invoices to transfer money from accounts you have in any bank to your Corporate balance,
allowing you to run your corporate operation.
`javascript
const starkbank = require('starkbank');
let invoice = await starkbank.corporateInvoice.create(
new starkbank.CorporateInvoice({
"amount": 1000
})
);
console.log(invoice);
`
Note: Instead of using CorporateInvoice objects, you can also pass each element in dictionary format
You can get a list of created invoices given some filters.
`javascript
const starkbank = require('starkbank');
let invoices = await starkbank.corporateInvoice.query({"limit": 5});
for await (let invoice of invoices) {
console.log(invoice);
}
`
You can create withdrawals to send cash back from your Corporate balance to your Banking balance
by using the Withdrawal resource.
`javascript
const starkbank = require('starkbank');
let withdrawal = await starkbank.corporateWithdrawal.create(
new starkbank.CorporateWithDrawal ({
amount: 10000,
externalId: "123"
description: "Sending back"
}
)
)
console.log(withdrawal)
`
Note: Instead of using CorporateWithdrawal objects, you can also pass each element in dictionary format
After its creation, information on a withdrawal may be retrieved by its id.
`javascript
const starkbank = require('starkbank');
let withdrawal = await starkbank.corporateWithdrawal.get("5155165527080960");
console.log(withdrawal);
`
You can get a list of created withdrawals given some filters.
`javascript
const starkbank = require('starkbank');
let withdrawals = await starkbank.corporateWithdrawal.query("limit": 5);
for await (let withdrawal of withdrawals) {
console.log(withdrawal);
}
`
To know how much money you have available to run authorizations, run:
`javascript
const starkbank = require('starkbank');
let balance = await starkbank.corporateBalance.get();
console.log(balance);
`
To understand your balance changes (corporate statement), you can query
transactions. Note that our system creates transactions for you when
you make purchases, withdrawals, receive corporate invoice payments, for example.
`javascript
const starkbank = require('starkbank');
let transactions = await starkbank.corporateTransaction.query({"limit": 5});
for await (let transaction of transactions) {
console.log(transaction);
}
`
You can get a specific transaction by its id:
`javascript
const starkbank = require('starkbank');
let transaction = await starkbank.corporateTransaction.get("5155165527080960");
console.log(transaction);
`
You can query any merchant categories using this resource.
You may also use MerchantCategories to define specific category filters in CorporateRules.
Either codes (which represents specific MCCs) or types (code groups) will be accepted as filters.
`javascript
const starkbank = require('starkbank');
let categories = await starkbank.merchantcategory.query({"search": "food"});
for await (let category of categories) {
console.log(categorie);
}
`
You can query any merchant countries using this resource.
You may also use MerchantCountries to define specific country filters in CorporateRules.
`javascript
const starkbank = require('starkbank');
let countries = await starbank.merchantcountry.query({"search": "brazil"});
for await (let country of countries) {
console.log(country);
}
`
You can query available card methods using this resource.
You may also use CardMethods to define specific purchase method filters in CorporateRules.
`javascript
const starkbank = require('starkbank');
let methods = await starkbank.cardMethod.query({"search": "token"});
for await (let method of methods) {
console.log(method);
}
`
Get a list of merchant cards in chunks of at most 100. If you need smaller chunks, use the limit parameter.
`javascript
const starkbank = require('starkbank');
(async() => {
let merchantCards = await starkbank.merchantCard.query({limit: 3});
for await (let merchantCard of merchantCards){
console.log(merchantCard);
}
})();
`
Retrieve detailed information about a specific session by its id.
`javascript
const starkbank = require('starkbank');
let merchantCard = await starkbank.merchantCard.get('5950134772826112')
console.log(merchantCard)
`
The Merchant Session allows you to create a session prior to a purchase.
Sessions are essential for defining the parameters of a purchase, including funding type, expiration, 3DS, and more.
`javascript
const starkbank = require('starkbank');
(async() => {
let merchantSession = await starkbank.merchantSession.create({
allowedFundingTypes: [
"debit",
"credit"
],
allowedInstallments: [
{
"totalAmount": 0,
"count": 1
},
{
"totalAmount": 120,
"count": 2
},
{
"totalAmount": 180,
"count": 12
}
],
expiration: 3600,
challengeMode: "disabled",
tags: [
"yourTags"
]
});
console.log(merchantSession)
})();
`
You can create a MerchantPurchase through a MerchantSession by passing its UUID.
Note: This method must be implemented in your front-end to ensure that sensitive card data does not pass through the back-end of the integration.
This route can be used to create a Merchant Purchase directly from the payer's client application.
The UUID of a Merchant Session that was previously created by the merchant is necessary to access this route.
`javascript
const starkbank = require('starkbank');
(async() => {
let merchantSessionPurchase = await starkbank.merchantSession.purchase(
{
uuid: "0bb894a2697d41d99fe02cad2c00c9bc",
amount: 180,
installmentCount: 12,
cardExpiration: "2035-01",
cardNumber: "5448280000000007",
cardSecurityCode: "123",
holderName: "Holder Name",
holderEmail: "holdeName@email.com",
holderPhone: "11111111111",
fundingType: "credit",
billingCountryCode: "BRA",
billingCity: "São Paulo",
billingStateCode: "SP",
billingStreetLine1: "Rua do Holder Name, 123",
billingStreetLine2: "",
billingZipCode: "11111-111",
metadata: {
"extraData": "extraData",
"language": "pt-BR",
"timezoneOffset": 3,
"userAgent": "Postman",
"userIp": "255.255.255.255
},
tags: [ "yourtags" ]
}
);
console.log(merchantSessionPurchase)
})();
`
Get a list of merchant sessions in chunks of at most 100. If you need smaller chunks, use the limit parameter.
`javascript
const starkbank = require('starkbank');
(async() => {
let merchantSessions = await starkbank.merchantSession.query({limit: 3});
for await (let merchantSession of merchantSessions){
console.log(merchantSession);
}
})();
`
Retrieve detailed information about a specific session by its id.
`javascript
const starkbank = require('starkbank');
(async() => {
let merchantSession = await starkbank.merchantSession.get('5950134772826112');
console.log(merchantSession);
})();
``