Skip to main content

Resources

Our APIs have advanced query filters, the following request returns a list of resources that allow such queries.

List Resources [GET]

BASE URL
https://api-b2b-hml.carbonext.com.br/v1/resources

Example Request

var axios = require('axios');

var config = {
method: 'get',
url: 'https://api-b2b-hml.carbonext.com.br/v1/resources',
headers: {
'Authorization': 'Bearer <access_token>'
}
};

axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});

Example Response

{
"entities": [
"applications",
"invoices",
"orders",
"subscriptions",
"retirements",
"users"
]
}