Welcome 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!
This library supports the following Node versions:
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:
1.1 To install the package with npm, run:
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:
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.
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:
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:
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:
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:
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:
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:
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.
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.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);
}
})();
page
function gives you full control over the API pagination. With each function call, you receive up to
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 null
.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 functionality
(for example: help(starkbank.boleto.create)
)
To send money between Stark Bank accounts, you can create transactions:
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.
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:
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:
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.
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.
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:
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:
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.
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.
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.
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.
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:
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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:
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:
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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:
const starkbank = require('starkbank');
(async() => {
let sherlock = await starkbank.boletoHolmes.get('5155165527080960');
console.log(sherlock);
})();
You can search for boleto holmes using filters.
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:
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.
const starkbank = require('starkbank');
(async() => {
let log = await starkbank.boletoHolmes.log.get('5155165527080960');
console.log(log);
})();
Paying a BR Code is also simple.
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:
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.
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.
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.
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:
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.
const starkbank = require('starkbank');
(async() => {
let log = await starkbank.brcodePayment.log.get('5155165527080960');
console.log(log);
})();
Paying boletos is also simple.
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:
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.
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.
const starkbank = require('starkbank');
(async() => {
let payment = await starkbank.boletoPayment.delete('5155165527080960');
console.log(payment);
})();
You can search for boleto payments using filters.
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:
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.
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.
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:
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:
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.
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.
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.
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:
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.
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:
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:
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.
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.
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.
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:
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:
If you want to manually pay DARFs without barcodes, you may create DarfPayments:
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:
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:
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.
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.
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.
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:
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'
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.
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:
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.
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.
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:
const starkbank = require('starkbank');
let holder = await starkbank.corporateHolder.cancel("5155165527080960");
console.log(holder);
To get a single Corporate Holder by its id, run:
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.
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.
const starkbank = require('starkbank');
let log = await starkbank.corporateHolder.log.get("5155165527080960");
console.log(log);
You can issue cards with specific spending rules.
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.
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.
const starkbank = require('starkbank');
let card = await starkbank.corporateCard.get("5155165527080960");
console.log(card);
You can update aspecific card by its id.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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:
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.
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:
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.
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.
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.
const starkbank = require('starkbank');
let methods = await starkbank.cardMethod.query({"search": "token"});
for await (let method of methods) {
console.log(method);
}
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.
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.
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)
})();
const starkbank = require('starkbank');
(async() => {
let merchantSessions = await starkbank.merchantSession.query({limit: 3});
for await (let merchantSession of merchantSessions){
console.log(merchantSession);
}
})();
const starkbank = require('starkbank');
(async() => {
let merchantSession = await starkbank.merchantSession.get('5950134772826112');
console.log(merchantSession);
})();
The Merchant Purchase section allows users to retrieve detailed information of the purchases.
const starkbank = require('starkbank');
(async() => {
let merchantPurchases = await starkbank.merchantPurchase.query({limit: 3});
for await (let merchantPurchase of merchantPurchases){
console.log(merchantPurchases);
}
})();
const starkbank = require('starkbank');
(async() => {
let merchantPurchase = await starkbank.merchantPurchase.get('5950134772826112');
console.log(merchantPurchase);
})();
To create a webhook subscription and be notified whenever an event occurs, run:
const starkbank = require('starkbank');
(async() => {
let webhook = await starkbank.webhook.create({
url: 'https://webhook.site/dd784f26-1d6a-4ca6-81cb-fda0267761ec',
subscriptions: ['transfer', 'boleto', 'boleto-payment', 'boleto-holmes', 'brcode-payment', 'utility-payment', 'deposit', 'invoice'],
});
console.log(webhook);
})();
To search for registered webhooks, run:
const starkbank = require('starkbank');
(async() => {
let webhooks = await starkbank.webhook.query();
for await (let webhook of webhooks) {
console.log(webhook);
}
})();
You can get a specific webhook by its id.
const starkbank = require('starkbank');
(async() => {
let webhook = await starkbank.webhook.get('5155165527080960');
console.log(webhook);
})();
You can also delete a specific webhook by its id.
const starkbank = require('starkbank');
(async() => {
let webhook = await starkbank.webhook.delete('5155165527080960');
console.log(webhook);
})();
Its easy to process events that arrived in your webhook. Remember to pass the signature header so the SDK can make sure its really StarkBank that sent you the event.
const starkbank = require('starkbank');
const express = require('express')
const app = express()
app.use(express.raw({type: "*/*"}));
const port = 3000
app.post('/', async (req, res) => {
try {
let event = await starkbank.event.parse({
content: req.body.toString(),
signature: req.headers['digital-signature']
});
if (event.subscription === 'transfer') {
console.log(event.log.transfer);
} else if (event.subscription === 'boleto') {
console.log(event.log.boleto);
} else if (event.subscription === 'boleto-payment') {
console.log(event.log.payment);
} else if (event.subscription === 'utility-payment') {
console.log(event.log.payment);
} else if (event.subscription === 'boleto-holmes') {
console.log(event.log.holmes);
} else if (event.subscription === 'brcode-payment') {
console.log(event.log.payment);
} else if (event.subscription === 'deposit') {
console.log(event.log.deposit);
} else if (event.subscription === 'invoice') {
console.log(event.log.invoice);
}
res.end()
}
catch (err) {
console.log(err)
res.status(400).end()
}
})
app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`))
To search for webhooks events, run:
const starkbank = require('starkbank');
(async() => {
let events = await starkbank.event.query({
after: '2020-01-01',
before: '2020-03-01',
});
for await (let event of events) {
console.log(event);
}
})();
You can get a specific webhook event by its id.
const starkbank = require('starkbank');
(async() => {
let event = await starkbank.event.get('5155165527080960');
console.log(event);
})();
You can also delete a specific webhook event by its id.
const starkbank = require('starkbank');
(async() => {
let event = await starkbank.event.delete('5155165527080960');
console.log(event);
})();
This can be used in case you've lost events.
With this function, you can manually set events retrieved from the API as
'delivered' to help future event queries with isDelivered = false
.
const starkbank = require('starkbank');
(async() => {
let event = await starkbank.event.update('5155165527080960', {isDelivered: true});
console.log(event);
})();
You can also get information on failed webhook event delivery attempts.
const starkbank = require('starkbank');
(async() => {
let attempts = await starkbank.event.attempt.query(after="2020-03-20");
for await (let attempt of attempts) {
console.log(attempt.code);
console.log(attempt.message);
}
})();
To retrieve information on a single attempt, use the following function:
const starkbank = require('starkbank');
(async() => {
let attempt = await starkbank.event.attempt.get("1616161616161616")
console.log(attempt);
})();
The Organization user allows you to create new Workspaces (bank accounts) under your organization. Workspaces have independent balances, statements, operations and users. The only link between your Workspaces is the Organization that controls them.
Note: This route will only work if the Organization user is used with workspaceId = null
.
const starkbank = require('starkbank');
(async() => {
let workspace = await starkbank.workspace.create(
{
username: 'iron-bank-workspace-1',
name: 'Iron Bank Workspace 1',
allowedTaxIds: ['012.345.678-90', '20.018.183/0001-80'],
user: organization,
}
);
})();
console.log(workspace);
This route lists Workspaces. If no parameter is passed, all the workspaces the user has access to will be listed, but you can also find other Workspaces by searching for their usernames or IDs directly.
const starkbank = require('starkbank');
(async() => {
let workspaces = await starkbank.workspace.query({limit = 30});
for await (let workspace of workspaces) {
console.log(workspace);
}
})();
You can get a specific Workspace by its id.
const starkbank = require('starkbank');
(async() => {
let workspace = await starkbank.workspace.get('1082736198236817');
console.log(workspace);
})();
You can update a specific Workspace by its id.
const starkbank = require('starkbank');
const fs = require('fs');
(async() => {
let file = fs.readFileSync('/path/to/file.png');
let workspace = await starkbank.workspace.update('1082736198236817', {
username: 'new-username',
name: 'New Name',
picture: file,
pictureType: 'image/png',
allowedTaxIds: ['012.345.678-90'],
user: starkbank.organization.replace(exampleOrganization, workspaces[0].id)
});
console.log(workspace);
})();
You can also block a specific Workspace by its id.
const starkbank = require('starkbank');
const fs = require('fs');
(async() => {
let file = fs.readFileSync('/path/to/file.png');
let workspace = await starkbank.workspace.update('1082736198236817', {
status: "blocked",
user: starkbank.organization.replace(exampleOrganization, workspaces[0].id)
});
console.log(workspace);
})();
Note: the Organization user can only update a workspace with the Workspace ID set.
This resource allows you to send HTTP requests to StarkBank routes.
You can perform a GET request to any StarkBank route.
It's possible to get a single resource using its id in the path.
const starkbank = require('starkbank');
(async() => {
let exampleId = "5699165527090460"
let invoice = await starkbank.request.get(`/invoice/${exampleId}`);
console.log(invoice);
})
You can also get the specific resource log,
const starkbank = require('starkbank');
(async() => {
let exampleId = "5699165527090460"
let invoice = await starkbank.request.get(`/invoice/log/${exampleId}`);
console.log(invoice);
})
This same method will be used to list all created items for the requested resource.
const starkbank = require('starkbank');
(async() => {
let path = "/invoice/";
let query={"limit": 10, "status": "paid"};
let i=0;
let list = await starkbank.request.get(path, query);
for (let invoice of list["invoices"]) {
console.log(invoice)
}
})
To list logs, you will use the same logic as for getting a single log.
const starkbank = require('starkbank');
(async() => {
let path = "/invoice/log";
let query={"limit": 10, "status": "paid"};
let i=0;
let list = await starkbank.request.get(path, query);
for (let invoice of list["invoices"]) {
console.log(invoice)
}
})
You can get a resource file using this method.
const starkbank = require('starkbank');
const fs = require('fs').promises;
(async() => {
let path = "/invoice/";
let query={"limit": 10, "status": "paid"};
let list = await starkbank.request.get(path, query);
let pdf = await starkbank.request.get(`invoice/${list["invoices"][0]["id"]}/pdf`)
await fs.writeFile('transfer.pdf', pdf);
})
You can perform a POST request to any StarkBank route.
This will create an object for each item sent in your request
Note: It's not possible to create multiple resources simultaneously. You need to send separate requests if you want to create multiple resources, such as invoices and boletos.
const starkbank = require('starkbank');
(async() => {
const path = "/invoice/";
const data={
"invoices": [{
"amount": 100,
"name": "Iron Bank S.A.",
"taxId": "20.018.183/0001-80"
}]
};
let invoice = await starkbank.request.post(path, data);
console.log(invoice)
})
You can perform a PATCH request to any StarkBank route.
It's possible to update a single item of a StarkBank resource.
import starkbank
exampleId = "5155165527080960"
request = starkbank.request.patch(
path=f"/invoice/{exampleId}",
body={"amount": 0},
)
print(request)
You can perform a PUT request to any StarkBank route.
It's possible to put a single item of a StarkBank resource.
import starkbank
data = {
"profiles": [
{
"interval": "day",
"delay": 0
}
]
}
request = starkbank.request.put(
path="/split-profile",
body=data,
)
print(request)
You can perform a DELETE request to any StarkBank route.
It's possible to delete a single item of a StarkBank resource.
import starkbank
exampleId = "5155165527080960"
request = starkbank.request.delete(
path=f"/transfer/{exampleId}",
)
print(request)
The SDK may raise one of four types of errors: InputErrors, InternalServerError, UnknownException, InvalidSignatureException
InputErrors will be raised whenever the API detects an error in your request (status code 400). If you catch such an error, you can get its elements to verify each of the individual errors that were detected in your request by the API. For example:
const starkbank = require('starkbank');
const { InputErrors } = starkbank.errors;
(async() => {
try{
let transactions = await starkbank.transaction.create([
{
amount: 100,
receiverId: '1029378109327810',
description: '.',
externalId: '12345',
tags: ['provider']
},
]);
} catch (e) {
if (e instanceof InputErrors) {
for (error of e.errors) {
console.log(error.code, error.message);
}
} else {
throw e;
}
}
})();
InternalServerError will be raised if the API runs into an internal error. If you ever stumble upon this one, rest assured that the development team is already rushing in to fix the mistake and get you back up to speed.
UnknownException will be raised if a request encounters an error that is neither InputErrors nor an InternalServerError, such as connectivity problems.
InvalidSignatureException will be raised specifically by starkbank.event.parse() when the provided content and signature do not check out with the Stark Bank public key.
If you have any questions about our SDK, just send us an email. We will respond you quickly, pinky promise. We are here to help you integrate with us ASAP. We also love feedback, so don't be shy about sharing your thoughts with us.
Email: help@starkbank.com