All URIs are relative to https://api-v2.fattureincloud.it
| Method | HTTP request | Description |
|---|---|---|
| getPriceListItems | GET /c/{company_id}/price_lists/{price_list_id}/items | Get PriceList Items List |
| getPriceLists | GET /c/{company_id}/price_lists | Get PriceLists |
GetPriceListItemsResponse getPriceListItems(companyId, priceListId)
Get PriceList Items List
Retrieves all the Items of a PriceList
import fattureInCloudSdk from '@fattureincloud/fattureincloud-js-sdk';
let defaultClient = fattureInCloudSdk.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2AuthenticationCodeFlow
let OAuth2AuthenticationCodeFlow = defaultClient.authentications['OAuth2AuthenticationCodeFlow'];
OAuth2AuthenticationCodeFlow.accessToken = 'YOUR ACCESS TOKEN';
let apiInstance = new fattureInCloudSdk.PriceListsApi();
let companyId = 12345; // Number | The ID of the company.
let priceListId = "priceListId_example"; // String | The ID of the price
apiInstance.getPriceListItems(companyId, priceListId).then((result) => {
console.log('API called successfully. Returned result: ' + JSON.stringify(result));
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| companyId | Number | The ID of the company. | |
| priceListId | String | The ID of the price |
- Content-Type: Not defined
- Accept: application/json
ListPriceListsResponse getPriceLists(companyId)
Get PriceLists
Retrieves all price lists of the company
import fattureInCloudSdk from '@fattureincloud/fattureincloud-js-sdk';
let defaultClient = fattureInCloudSdk.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2AuthenticationCodeFlow
let OAuth2AuthenticationCodeFlow = defaultClient.authentications['OAuth2AuthenticationCodeFlow'];
OAuth2AuthenticationCodeFlow.accessToken = 'YOUR ACCESS TOKEN';
let apiInstance = new fattureInCloudSdk.PriceListsApi();
let companyId = 12345; // Number | The ID of the company.
apiInstance.getPriceLists(companyId).then((result) => {
console.log('API called successfully. Returned result: ' + JSON.stringify(result));
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| companyId | Number | The ID of the company. |
- Content-Type: Not defined
- Accept: application/json