# Integration Specifications

## Integration Overview

Seamlessly Integrate Your Products, Fulfillment Centers & Sales Channels In One Platform.  Extensiv (Skubana) is an order management platform that helps brands, merchants and 3PLs intelligently manage orders.

This document provides context on what kind of data is being gathered through this extractor, which endpoints that data is coming from, and how the extracted tables relate to each other.

## Integration Availability

This integration is available for:

* Enterprise
* Growth

## API Endpoints

The Daasity Extensiv (Skubana) extractor is built based on this [Skubana API documentation](https://documentation.skubana.com/spec/).  The following endpoints are used by Daasity to replicate data from Extensiv (Skubana:)

* [Company Info](https://documentation.skubana.com/spec/#operation/getCompanyInfoUsingGET)
* [Retrieve FBA inventory](https://documentation.skubana.com/spec/#operation/getFbaInventoryUsingGET)
* [Inventory](https://documentation.skubana.com/spec/#operation/getInventoryUsingGET)
* [Orders](https://documentation.skubana.com/spec/#operation/getOrdersUsingGET_1)
* [Warehouses](https://documentation.skubana.com/spec/#operation/getWarehousesUsingGET)
* [Shipment Providers](https://documentation.skubana.com/spec/#operation/getShippingProvidersUsingGET)
* [Products](https://documentation.skubana.com/spec/#operation/getProductsV11UsingGET)
* [Product Listing](https://documentation.skubana.com/spec/#operation/getListingsUsingGET)
* [Product Stock Totals](https://documentation.skubana.com/spec/#operation/getProductStocksTotalUsingGET)
* [Purchase Orders](https://documentation.skubana.com/spec/#operation/getPurchaseOrdersUsingGET_1)
* [Sales Channels](https://documentation.skubana.com/spec/#operation/getSalesChannelsUsingGET)
* [Shipments](https://documentation.skubana.com/spec/#operation/getShipmentsUsingGET)
* [Vendors](https://documentation.skubana.com/spec/#operation/getVendorsUsingGET_1)

The Orders endpoint runs each hour and all other endpoints are updated daily. &#x20;

{% hint style="danger" %}
**Limitation**: due to the impact on Extensiv (Skubana), for merchants with a large number of products, the Product Stock Totals endpoint will be used in lieu of the Inventory endpoint to ensure that the API will return data in a timely manner
{% endhint %}

## Entity Relationship Diagram (ERD)

[Click here to view the ERD for the Daasity ](https://lucid.app/documents/embedded/a2844d32-d1bd-4102-a976-59cd3bc7049e)[Skubana integration](https://lucid.app/documents/embedded/a2844d32-d1bd-4102-a976-59cd3bc7049e) illustrating the different tables and keys to join across tables.

## Extensiv (Skubana) Schema

The Daasity Extensiv (Skubana) extractor creates these tables using the endpoints and replication methods listed.  The data is mapped from source API endpoint to the table based on the mapping logic outlined in each table.

* [FBA Inventory Levels](#fba-inventory-levels)
* [Inventory Levels](#inventory-levels)
* [Listing SKU](#listing-sku)
* [Order Items](#order-items)
* [Orders](#orders)
* [Purchase Order Items](#purchase-order-items)
* [Purchase Orders](#purchase-orders)
* [Related Orders](#related-orders)
* [Sales Channels](#sales-channels)
* [Shipment Carrier Services](#shipment-carrier-services)
* [Shipment Carriers](#shipment-carriers)
* [Shipment Package Types](#shipment-package-types)
* [Shipments](#shipments)
* [SKU Attributes](#sku-attributes)
* [SKU Components](#sku-components)
* [SKU Labels](#sku-labels)
* [SKUs](#skus)
* [Vendors](#vendors)
* [Warehouses](#warehouses)

### FBA Inventory Levels

* Endpoint: [Retrieve FBA inventory](https://documentation.skubana.com/spec/#operation/getFbaInventoryUsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.fba_inventory_levels`]

| JSON Element           | Database Column             |
| ---------------------- | --------------------------- |
| asin + fnsku           | key                         |
| asin                   | asin                        |
| fnSku                  | fnsku                       |
| inStockSupplyQuantity  | in\_stock\_quantity\_supply |
| listingSku             | listing\_sku                |
| product::fnSku         | product\_fnsku              |
| product::masterSku     | product\_master\_sku        |
| product::mpn           | product\_mpn                |
| product::name          | product\_name               |
| product::productId     | product\_product\_id        |
| product::productType   | product\_product\_type      |
| product::upc           | product\_upc                |
| productCondition       | product\_condition          |
| totalSupplyQuantity    | total\_supply\_quantity     |
| warehouse::warehouseId | warehouse\_id               |

### Inventory Levels

* Endpoint: [Inventory](https://documentation.skubana.com/spec/#operation/getInventoryUsingGET) or [Product Stock Totals](https://documentation.skubana.com/spec/#operation/getProductStocksTotalUsingGET) depending on the volume of SKUs
* Update method: UPSERT
* Table Name: \[`skubana.inventory_levels`]

{% hint style="info" %}
**NOTE:** Daasity cycles through each warehouse to retrieve the inventory data
{% endhint %}

{% hint style="danger" %}
For merchants with a large volume of SKUs the Inventory endpoint is not performant as Skubana has to do calculations to determine the on hand quantity. If you have a large number of SKUs we will use the Product Stock Totals endpoint instead but populate the same table
{% endhint %}

| JSON Element                | Database Column       |
| --------------------------- | --------------------- |
| masterSKU + productId + upc | key                   |
| inTransitQuantity           | in\_transit\_quantity |
| lockedQuantity              | locked\_quantity      |
| onHandQuantity              | on\_hand\_quantity    |
| product::description        | description           |
| product::fnSku              | fnsku                 |
| product::hazmat             | hazmat                |
| product::masterSku          | master\_sku           |
| product::mpn                | mpn                   |
| product::name               | name                  |
| product::productId          | product\_id           |
| product::productType        | product\_type         |
| product::productWeight      | product\_weight       |
| product::upc                | upc                   |
| from API call               | warehouse\_id         |

### Listing SKU

* Endpoint: [Product Listing](https://documentation.skubana.com/spec/#operation/getListingsUsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.listing_sku`]

| JSON Element                             | Database Column       |
| ---------------------------------------- | --------------------- |
| listingId                                | listing\_id           |
| productId                                | product\_id           |
| fnSku                                    | fnsku                 |
| masterSku                                | master\_sku           |
| listingSku                               | listing\_sku          |
| pushInventory                            | push\_inventory\_flag |
| salesChannelId                           | sales\_channel\_id    |
| active                                   | active                |
| masterSku+listingId+productId+listingSku | key                   |
| created                                  | created\_at           |
| lastModified                             | updated\_at           |

### Order Items

* Endpoint: [Orders](https://documentation.skubana.com/spec/#operation/getOrdersUsingGET_1)
* Update method: UPSERT
* Table Name: \[`skubana.order_items`]

| JSON Element                      | Database Column        |
| --------------------------------- | ---------------------- |
| orderId + orderItems::orderItemId | key                    |
| orderItems::listingName           | listing\_name          |
| orderItems::listingSku            | listing\_sku           |
| orderId                           | order\_id              |
| orderItems::orderItemId           | order\_item\_id        |
| orderItems::product::fnSku        | product\_fnsku         |
| orderItems::product::masterSku    | product\_master\_sku   |
| orderItems::product::mpn          | product\_mpn           |
| orderItems::product::name         | product\_name          |
| orderItems::product::productId    | product\_product\_id   |
| orderItems::product::productType  | product\_product\_type |
| orderItems::product::upc          | product\_upc           |
| orderItems::quantityOrdered       | quantity\_ordered      |
| orderItems::unitPrice::amount     | unit\_price\_amount    |
| orderItems::unitPrice::currency   | unit\_price\_currency  |
| orderItems::tax::amount           | tax\_amount            |
| orderItems::tax::currency         | tax\_currency          |

### Orders

* Endpoint: [Orders](https://documentation.skubana.com/spec/#operation/getOrdersUsingGET_1)
* Update method: UPSERT
* Table Name: \[`skubana.orders`]

| JSON Element                   | Database Column                    |
| ------------------------------ | ---------------------------------- |
| orderId                        | order\_id                          |
| cancelReason::details          | cancel\_reason\_details            |
| cancelReasons::type            | cancel\_reason\_type               |
| currency                       | currency                           |
| customer::companyName          | customer\_company\_name            |
| customer::emailAddresses       | customer\_email\_addresses         |
| customer::name                 | customer\_name                     |
| discount::amount               | discount\_amount                   |
| fulfillmentSource::name        | fulfillment\_source\_name          |
| fulfillmentSource::warehouseId | fulfillment\_source\_warehouse\_id |
| orderDate                      | order\_date                        |
| orderItemTotal::amount         | order\_item\_total\_amount         |
| orderItemTotal::currency       | order\_item\_total\_currency       |
| orderNumber                    | order\_number                      |
| orderStatus                    | order\_status                      |
| orderTotal::amount             | order\_total\_amount               |
| orderTotal::currency           | order\_total\_currency             |
| orderType                      | order\_type                        |
| paymentDate                    | payment\_date                      |
| paymentType::name              | payment\_type\_name                |
| salesChannel::name             | sales\_channel\_name               |
| salesChannel::salesChannelId   | sales\_channel\_id                 |
| salesChannel::type             | sales\_channel\_type               |
| shipCompany                    | ship\_company                      |
| shipEmail                      | ship\_email                        |
| shipAddress1                   | ship\_address1                     |
| shipAddress2                   | ship\_address2                     |
| shipCity                       | ship\_city                         |
| shipState                      | ship\_state                        |
| shipZipCode                    | ship\_zip\_code                    |
| shipPhone                      | ship\_phone                        |
| shipCountry                    | ship\_country                      |
| shipDate                       | ship\_date                         |
| shipMethod::shippingProviderId | shipping\_provider\_id             |
| shipMethod::shippingServiceId  | shipping\_service\_id              |
| shipment::shipmentId           | shipment\_id                       |
| shippingCost::amount           | shipping\_cost\_amount             |
| createdDate                    | created\_at                        |
| modifiedDate                   | updated\_at                        |

### Purchase Order Items

* Endpoint: [Purchase Orders](https://documentation.skubana.com/spec/#operation/getPurchaseOrdersUsingGET_1)
* Update method: UPSERT
* Table Name: \[`skubana.purchase_order_items`]

| JSON Element                                              | Database Column                |
| --------------------------------------------------------- | ------------------------------ |
| purchaseOrderID + purchaseOrderItems::purchaseOrderItemId | key                            |
| purchaseOrderId                                           | purchase\_order\_id            |
| purchaseOrderItems::billedDate                            | billed\_date                   |
| purchaseOrderItems::billedUnitCost::amount                | billed\_unit\_cost\_amount     |
| purchaseOrderItems::billedUnitCost::currency              | billed\_unit\_cost\_currency   |
| purchaseOrderItems::deliveryDate                          | delivery\_date                 |
| purchaseOrderItems::discount::amount                      | discount\_amount               |
| purchaseOrderItems::discount::discountType                | discount\_type                 |
| purchaseOrderItems::estimatedDeliveryDate                 | estimated\_delivery\_date      |
| purchaseOrderItems::landedUnitCost::amount                | landed\_unit\_cost\_amount     |
| purchaseOrderItems::landedUnitCost::currency              | landed\_unit\_currency         |
| purchaseOrderItems::memo                                  | memo                           |
| purchaseOrderItems::originalUnitCost::amount              | original\_unit\_cost\_amount   |
| purchaseOrderItems::originalUnitCost::currency            | original\_unit\_cost\_currency |
| purchaseOrderItems::packaging                             | packaging                      |
| purchaseOrderItems::percentageTax                         | percentage\_tax                |
| purchaseOrderItems::productStockId                        | product\_stock\_id             |
| purchaseOrderItems::purchaseOrderItemId                   | purchase\_order\_item\_id      |
| purchaseOrderItems::quantity                              | quantity                       |
| purchaseOrderItems::referenceNumber                       | reference\_number              |
| purchaseOrderItems::status                                | status                         |
| purchaseOrderItems::unitOfMeasure                         | unit\_of\_measure              |
| purchaseOrderItems::uomUnitQuantity                       | uom\_unit\_quantity            |
| purchaseOrderItems::vendorProductId                       | vendor\_product\_id            |
| purchaseOrderItems::vendorProductMasterSku                | vendor\_product\_master\_sku   |
| purchaseOrderItems::vendorProductVendorSku                | vendor\_product\_vendor\_sku   |
| purchaseOrderItems::receivedDate                          | received\_date                 |

### Purchase Orders

* Endpoint: [Purchase Orders](https://documentation.skubana.com/spec/#operation/getPurchaseOrdersUsingGET_1)
* Update method: UPSERT
* Table Name: \[`skubana.purchase_orders`]

| JSON Element                     | Database Column               |
| -------------------------------- | ----------------------------- |
| vendorId                         | vendor\_id                    |
| vendorConfirmedOnDate            | vendor\_confirmed\_on\_date   |
| vendorConfirmByDate              | vendor\_confirm\_by\_date     |
| type                             | type                          |
| status                           | status                        |
| shippingCost::amount             | shipping\_cost\_amount        |
| shippingCost::currency           | shipping\_cost\_currency      |
| purchaseOrderTemplateId          | purchase\_order\_template\_id |
| purchaseOrderId                  | purchase\_order\_id           |
| paymentTerm::active              | payment\_term\_active         |
| paymentTerm::description         | payment\_term\_description    |
| paymentTerm::vendorPaymentTermId | payment\_term\_id             |
| number                           | number                        |
| internalNotes                    | internal\_notes               |
| incortermShippingRuleId          | incoterm\_shipping\_rule\_id  |
| incotermShippingRule             | incoterm\_shipping\_rule      |
| format                           | format                        |
| dropshipOrderId                  | dropship\_order\_id           |
| destinationWarehouseId           | destination\_warehouse\_id    |
| dateModified                     | date\_modified                |
| dateIssued                       | date\_issued                  |
| dateCreated                      | date\_created                 |
| dateAuthorized                   | date\_authorized              |
| currency                         | currency                      |
| createdBy::email                 | created\_by\_email            |
| createdBy::name                  | created\_by\_name             |
| createdBy::userId                | created\_by\_user\_id         |
| autoUpdatesEnabled               | auto\_updates\_enabled        |
| authorizer::email                | authorizer\_email             |
| authorizer::name                 | authorizer\_name              |
| authorizer::userId               | authorizer\_user\_id          |

### Related Orders

* Endpoint: [Orders](https://documentation.skubana.com/spec/#operation/getOrdersUsingGET_1)
* Update method: UPSERT
* Table Name: \[`skubana.related_orders`]

| JSON Element    | Database Column    |
| --------------- | ------------------ |
| orderId         | order\_id          |
| relatedOrderIds | related\_order\_id |

### Sales Channels

* Endpoint: [Sales Channels](https://documentation.skubana.com/spec/#operation/getSalesChannelsUsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.sales_channels`]

| JSON Element                               | Database Column    |
| ------------------------------------------ | ------------------ |
| companyName + name + salesChannelId + type | key                |
| companyName                                | company\_name      |
| name                                       | name               |
| salesChannelId                             | sales\_channel\_id |
| type                                       | type               |

### Shipment Carrier Services

* Endpoint: [Shipment Providers](https://documentation.skubana.com/spec/#operation/getShippingProvidersUsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.shipment_carrier_services`]

| JSON Element                                             | Database Column       |
| -------------------------------------------------------- | --------------------- |
| shippingProviderId + shippingServices::shippingServiceId | key                   |
| shippingProviderId                                       | shipping\_carrier\_id |
| shippingServices::shippingServiceId                      | shipping\_service\_id |
| shippingServices::shippingCarrier                        | shipping\_carrier     |
| shippingServices::serviceName                            | service\_name         |
| shippingServices::serviceCode                            | service\_code         |
| shippingServices::abbreviation                           | abbreviation          |
| shippingServices::international                          | international         |
| shippingServices::weightRequired                         | weight\_required      |
| shippingServices::dimensionsRequired                     | dimensions\_required  |
| shippingServices::halfPageLabel                          | half\_page\_label     |
| shippingServices::active                                 | active                |

### Shipment Carriers

* Endpoint: [Shipment Providers](https://documentation.skubana.com/spec/#operation/getShippingProvidersUsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.shipment_carriers`]

| JSON Element       | Database Column       |
| ------------------ | --------------------- |
| active             | active                |
| name               | name                  |
| shippingProviderId | shipment\_carrier\_id |
| type               | type                  |

### Shipment Package Types

* Endpoint: [Shipment Providers](https://documentation.skubana.com/spec/#operation/getShippingProvidersUsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.shipment_package_types`]

| JSON Element                                     | Database Column       |
| ------------------------------------------------ | --------------------- |
| shippingProviderId + packageTypes::packageTypeId | key                   |
| shippingProviderId                               | shipment\_carrier\_id |
| packageTypes::packageTypeId                      | package\_type\_id     |
| packageTypes::shippingCarrier                    | shipping\_carrier     |
| packageTypes::packageName                        | package\_name         |
| packageTypes::description                        | description           |
| packageTypes::abbreviation                       | abbreviation          |
| packageTypes::packageCode                        | package\_code         |
| packageTypes::domestic                           | domestic              |
| packageTypes::international                      | international         |
| packageTypes::weightRequired                     | weight\_required      |
| packageTypes::active                             | active                |

### Shipments

* Endpoint: [Shipments](https://documentation.skubana.com/spec/#operation/getShipmentsUsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.shipments`]

| JSON Element                   | Database Column                      |
| ------------------------------ | ------------------------------------ |
| batchNumber                    | batch\_number                        |
| carrierFee::amount             | carrier\_fee\_amount                 |
| carrierFee::currency           | carrier\_fee\_currency               |
| deliveryStatus                 | delivery\_status                     |
| estimatedArrival               | estimated\_arrival                   |
| orderId                        | order\_id                            |
| orderNumber                    | order\_number                        |
| received                       | received                             |
| rma                            | rma                                  |
| shipDate                       | ship\_date                           |
| shipMethod::packageTypeId      | ship\_method\_package\_type\_id      |
| shipMethod::shippingCarrier    | ship\_method\_shipping\_carrier      |
| shipMethod::shippingProviderId | ship\_method\_shipping\_provider\_id |
| shipMethod::shippingServiceId  | ship\_method\_shipping\_service\_id  |
| shipmentId                     | shipment\_id                         |
| trackingNumber                 | tracking\_number                     |
| transactionId                  | transaction\_id                      |
| type                           | type                                 |
| warehouseId                    | warehouse\_id                        |
| created                        | created\_at                          |

### SKU Attributes

* Endpoint: [Products](https://documentation.skubana.com/spec/#operation/getProductsV11UsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.sku_attributes`]

| JSON Element                                                                             | Database Column      |
| ---------------------------------------------------------------------------------------- | -------------------- |
| productId + attributeGroups::attributeGroupId + attributeGroups::attributes::attributeId | key                  |
| productId                                                                                | product\_id          |
| attributeGroups::attributeGroupId                                                        | attribute\_group\_id |
| attributeGroups::attributes::attributeId                                                 | attribute\_id        |
| attributeGroups::attributes::name                                                        | attribute\_name      |

### SKU Components

* Endpoint: [Products](https://documentation.skubana.com/spec/#operation/getProductsV11UsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.sku_components`]

| JSON Element                               | Database Column                 |
| ------------------------------------------ | ------------------------------- |
| productId + bundledItems::bundleItemId     | key                             |
| productId                                  | parent\_product\_id             |
| bundledItems::bundleItemId                 | bundle\_item\_id                |
| bundledItems::bundledProducts::fnSku       | bundled\_product\_fnsku         |
| bundledItems::bundledProducts::masterSku   | bundled\_product\_mastersku     |
| bundledItems::bundledProducts::mpn         | bundled\_product\_mpn           |
| bundledItems::bundledProducts::name        | bundled\_product\_name          |
| bundledItems::bundledProducts::productId   | bundled\_product\_product\_id   |
| bundledItems::bundledProducts::productType | bundled\_product\_product\_type |
| bundledItems::bundledProducts::upc         | bundled\_product\_upc           |
| bundledItems::bundledProductQuantity       | bundled\_product\_quantity      |
| bundledItems::product::fnSku               | product\_fnsku                  |
| bundledItems::product::masterSku           | product\_master\_sku            |
| bundledItems::product::mpn                 | product\_mpn                    |
| bundledItems::product::name                | product\_name                   |
| bundledItems::product::productId           | product\_product\_id            |
| bundledItems::product::productType         | product\_product\_type          |
| bundledItems::product::upc                 | product\_upc                    |

### SKU Labels

* Endpoint: [Products](https://documentation.skubana.com/spec/#operation/getProductsV11UsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.sku_labels`]

| JSON Element       | Database Column |
| ------------------ | --------------- |
| productId + labels | key             |
| productId          | product\_id     |
| labels             | label           |

### SKUs

* Endpoint: [Products](https://documentation.skubana.com/spec/#operation/getProductsV11UsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.skus`]

| JSON Element           | Database Column          |
| ---------------------- | ------------------------ |
| productId              | product\_id              |
| name                   | name                     |
| active                 | active                   |
| allowBackorders        | allow\_backorders        |
| brand                  | brand                    |
| bundle                 | bundle                   |
| height                 | height                   |
| length                 | length                   |
| masterSku              | master\_sku              |
| mapPrice::amount       | map\_price\_amount       |
| mapPrice::currency     | map\_price\_currency     |
| ounces                 | ounces                   |
| pounds                 | pounds                   |
| shippingCost::amount   | shipping\_cost\_amount   |
| shippingCost::currency | shipping\_cost\_currency |
| shipsInOwnBox          | ships\_in\_own\_box      |
| type                   | type                     |
| upc                    | upc                      |
| vendorCost::amount     | vendor\_cost\_amount     |
| vendorCost::currency   | vendor\_cost\_currency   |
| weight                 | weight                   |
| width                  | width                    |
| createdDate            | created\_at              |
| modifiedDate           | updated\_at              |

### Vendors

* Endpoint: [Vendors](https://documentation.skubana.com/spec/#operation/getVendorsUsingGET_1)
* Update method: UPSERT
* Table Name: \[`skubana.vendors`]

| JSON Element                                  | Database Column                         |
| --------------------------------------------- | --------------------------------------- |
| vendorId                                      | vendor\_id                              |
| active                                        | active                                  |
| address::address1                             | address1                                |
| address::address2                             | address2                                |
| address::address3                             | address3                                |
| address::city                                 | city                                    |
| address::country                              | country                                 |
| address::province                             | province                                |
| address::state                                | state                                   |
| address::type                                 | address\_type                           |
| address::zipCode                              | zipcode                                 |
| contactEmail                                  | contact\_email                          |
| contactPhone1                                 | contact\_phone1                         |
| contactPhone2                                 | contact\_phone2                         |
| defaultIncotermShippingRule                   | default\_incoterm\_shipping\_rule       |
| defaultIncotermShippingRuleId                 | default\_incoterm\_shipping\_rule\_id   |
| defaultPurchaseOrderFormat                    | default\_purchase\_order\_format        |
| defaultPurchaseOrderFormatId                  | default\_purchase\_order\_template\_id  |
| defaultVendorPaymentTerm::active              | default\_vendor\_payment\_term\_active  |
| defaultVendorPaymentTerm::description         | default\_vendor\_payment\_term\_desc    |
| defaultVendorPaymentTerm::vendorPaymentTermId | default\_vendor\_payment\_term\_id      |
| dropshipPurchaseOrderTemplateId               | dropship\_purchase\_order\_template\_id |
| dropshipper                                   | dropshipper                             |
| fax                                           | fax                                     |
| manufacturer                                  | manufacturer                            |
| percentageTax                                 | percentage\_tax                         |
| purchaseOrderEmail                            | purchase\_order\_email                  |
| supplier                                      | supplier                                |
| warehouse::name                               | warehouse\_name                         |
| warehouse::warehouseId                        | warehouse\_id                           |
| website                                       | website                                 |
| name                                          | name                                    |

### Warehouses

* Endpoint: [Warehouses](https://documentation.skubana.com/spec/#operation/getWarehousesUsingGET)
* Update method: UPSERT
* Table Name: \[`skubana.warehouses`]

| JSON Element | Database Column |
| ------------ | --------------- |
| warehouseId  | warehouse\_id   |
| active       | active          |
| name         | name            |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.daasity.com/core-concepts/data-integrations/setup-guides/digital-integrations/extensiv-skubana/integration-specifications.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
