Skip to main content

SAP Business One Connector

SAP Business One SAP Business One is an integrated enterprise resource planning (ERP) solution designed for organizations to manage their entire operations.

This component allows you to manage business partners, sales orders, purchase orders, and inventory items within SAP Business One.

API Documentation

This component was built using the SAP Business One Service Layer API, supporting both V1 (/b1s/v1 - OData 3.0) and V2 (/b1s/v2 - OData 4.0) endpoints. You can configure the API version in your connection settings.

Additional resources:

Connections

SAP Business One Authentication

Authentication for SAP Business One

SAP Business One uses username and password authentication to connect to the Service Layer API. The Service Layer supports two API versions: v2 (OData 4.0, recommended for new integrations) and v1 (OData 3.0, the default for backwards compatibility).

For detailed information about the SAP Business One Service Layer API, refer to the Service Layer API Reference.

Prerequisites

  • Access to a SAP Business One instance (cloud or on-premises)
  • SAP Business One user account with API access permissions
  • For cloud instances: Server address including hostname/IP and port
  • For on-premises instances: Network access to the SAP Business One server via the on-premises agent

Setup Steps

Gather the following information from the SAP Business One administrator:

  1. Username and Password: SAP Business One user credentials with appropriate API permissions
  2. Server Address (for cloud/non-OnPrem instances):
    • Format: https://<Server Name/IP>:<Port>
    • Example: https://sapb1-server.example.com:50000
  3. Database Instance (optional):
    • Format: <DatabaseName>@<Host>:<Port>
    • Example: C200@10.58.114.200:30013
  4. Company Name (optional):
    • The company database name to connect to
    • Example: SBODEMOUS
  5. API Version:
    • v1 (OData 3.0) - Default, for backwards compatibility with existing integrations
    • v2 (OData 4.0) - Recommended for new integrations with improved functionality

Configure the Connection

FieldRequiredDescription
UsernameYesThe SAP Business One username for authentication
PasswordYesThe SAP Business One password for authentication
Server AddressNo*The URL of the SAP Business One Service Layer server, including the port. Required for non-OnPrem connections. Example: https://sapb1-server.example.com:50000
Database InstanceNoThe SAP HANA database instance in format DatabaseName@Host:Port. Example: C200@10.58.114.200:30013
Company NameNoThe company database name to connect to in SAP Business One. Example: SBODEMOUS
API VersionNoThe Service Layer API version to use. Defaults to v1 (OData 3.0). Select v2 (OData 4.0) for new integrations

*Required for cloud deployments. For on-premises deployments, the Host and Port fields are automatically configured by the on-premises agent.

InputCommentsDefault
UsernameThe SAP Business One username for authentication.
PasswordThe SAP Business One password for authentication.
Server AddressThe URL of the SAP Business One Service Layer server, including the port (e.g., https://sapb1-server.example.com:50000). Required for non-OnPrem connections. See SAP Business One Service Layer documentation for details.
Database InstanceThe SAP HANA database instance to connect to, in the format DatabaseName@Host:Port.
Company NameThe company database name to connect to in SAP Business One.
API VersionThe Service Layer API version to use. v2 (OData 4.0) is recommended for new integrations and provides improved functionality. v1 (OData 3.0) is available for backwards compatibility with existing integrations.v1

Actions

Close Invoice

Invoke the method Close.

InputCommentsDefault
Doc EntryThe document entry number (DocEntry) that uniquely identifies the invoice. This is an integer value.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Create Business Partner

Create an instance of Business Partners

InputCommentsDefault
Card CodeThe unique code identifying the business partner (customer or supplier).
Card NameThe name of the business partner (customer or supplier).
Card TypeThe type of the business partner: Customer (cCustomer), Supplier (cSupplier), or Lead (cLid).
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Create Invoice

Create an instance of Invoices.

InputCommentsDefault
Card CodeThe unique code identifying the business partner (customer or supplier).
Doc LinesThe document lines containing item details for the order. Each line should include ItemCode, Quantity, and optionally UnitPrice and TaxCode.
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Create Item

Retrieve all or some selected properties from an instance of Items with the given id.

InputCommentsDefault
Item CodeThe unique code identifying the item in the inventory.
Item NameThe name of the item in the inventory.
Item TypeThe type of the item: Items (itItems), Labor (itLabor), Travel (itTravel), or Fixed Assets (itFixedAssets).
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Create Order

Create an instance of Orders.

InputCommentsDefault
Card CodeThe business partner code associated with this order.
Doc Due DateThe due date of the order in YYYY-MM-DD format.
Doc LinesThe document lines containing item details for the order. Each line should include ItemCode, Quantity, and optionally UnitPrice and TaxCode.
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Create Price List

Create an instance of Price Lists

InputCommentsDefault
Price List NameThe name of the price list.
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Create Purchase Order

Create an instance of Purchase Orders.

InputCommentsDefault
Card CodeThe unique code identifying the business partner (customer or supplier).
Document LinesThe document lines containing item details for the order. Each line should include ItemCode, Quantity, and optionally UnitPrice and TaxCode.
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Create Record

Create a new record in SAP Business One.

InputCommentsDefault
Record TypeThe type of record to use for the operation (e.g., JournalEntries, Activities, BusinessPartners). This corresponds to the Service Layer entity name.
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Create Warehouse

Create an instance of Warehouses.

InputCommentsDefault
Warehouse NameThe name of the warehouse.
Warehouse CodeThe unique code identifying the warehouse.
Warehouse Location IDThe unique identifier for the warehouse location. This is an integer value.
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Delete Business Partner

Delete an instance of BusinessPartners with the specified id.

InputCommentsDefault
Card CodeThe unique code identifying the business partner (customer or supplier).
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Delete Item

Delete an instance of Items with the specified id.

InputCommentsDefault
Item CodeThe unique code identifying the item in the inventory.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Delete Price List

Delete an instance of Items with the specified id.

InputCommentsDefault
Price List NumberThe unique number identifying the price list. This is an integer value.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Delete Record

Delete an existing record in SAP Business One.

InputCommentsDefault
Record TypeThe type of record to use for the operation (e.g., JournalEntries, Activities, BusinessPartners). This corresponds to the Service Layer entity name.
Record IDThe unique identifier for the record. This is typically an integer value (DocEntry or similar).
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Delete Warehouse

Delete an instance of Warehouses with the specified id.

InputCommentsDefault
Warehouse CodeThe unique code identifying the warehouse.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Get Business Partner

Retrieve all or some selected properties from an instance of BusinessPartners with the given id.

InputCommentsDefault
Card CodeThe unique code identifying the business partner (customer or supplier).
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Get Invoice

Retrieve all or some selected properties from an instance of Warehouses with the given id.

InputCommentsDefault
Doc EntryThe document entry number (DocEntry) that uniquely identifies the invoice. This is an integer value.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Get Item

Retrieve all or some selected properties from an instance of Items with the given id.

InputCommentsDefault
Item CodeThe unique code identifying the item in the inventory.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Get Order

Retrieve all or some selected properties from an instance of Orders with the given id.

InputCommentsDefault
Doc EntryThe document entry number (DocEntry) that uniquely identifies the order. This is an integer value.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Get Price List

Retrieve all or some selected properties from an instance of PriceLists with the given id.

InputCommentsDefault
Price List NumberThe unique number identifying the price list. This is an integer value.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Get Purchase Order

Retrieve all or some selected properties from an instance of Purchase Orders with the given id.

InputCommentsDefault
Purchase Order Document EntryThe document entry number (DocEntry) that uniquely identifies the purchase order. This is an integer value.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Get Record

Retrieve a single record from SAP Business One.

InputCommentsDefault
Record TypeThe type of record to use for the operation (e.g., JournalEntries, Activities, BusinessPartners). This corresponds to the Service Layer entity name.
Record IDThe unique identifier for the record. This is typically an integer value (DocEntry or similar).
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Get Warehouse

Retrieve all or some selected properties from an instance of Warehouses with the given id.

InputCommentsDefault
Warehouse CodeThe unique code identifying the warehouse.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Get Warehouse Location

Retrieve all or some selected properties from an instance of Warehouse Location with the given id.

InputCommentsDefault
Warehouse Location IDThe unique identifier for the warehouse location. This is an integer value.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

List Business Partners

Retrieve a collection of Business Partners with all or some selected properties

InputCommentsDefault
ConnectionThe SAP Business One connection to use.
Fetch AllWhen true, all records will be fetched automatically by paginating through results. When false, only the number of records specified in $top will be returned.false
TopThe maximum number of items to return. Maximum value is 20.
SkipThe number of items to skip before returning results. Used for pagination.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
FilterAn OData filter expression to apply to the request (e.g., startswith, eq, gt). See OData $filter documentation for filter syntax.
Order ByA comma-separated list of fields to sort by. Add 'asc' or 'desc' after field name for sort direction (e.g., ItemCode desc).
Custom Query ParamsCustom query parameters to include in the request, such as $expand for related entities.
Debug RequestEnabling this flag will log out the current request.false

List Invoices

Retrieve a collection of Invoices with all or some selected properties in the given order by specifying the given filter condition.

InputCommentsDefault
ConnectionThe SAP Business One connection to use.
Fetch AllWhen true, all records will be fetched automatically by paginating through results. When false, only the number of records specified in $top will be returned.false
TopThe maximum number of items to return. Maximum value is 20.
SkipThe number of items to skip before returning results. Used for pagination.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
FilterAn OData filter expression to apply to the request (e.g., startswith, eq, gt). See OData $filter documentation for filter syntax.
Order ByA comma-separated list of fields to sort by. Add 'asc' or 'desc' after field name for sort direction (e.g., ItemCode desc).
Custom Query ParamsCustom query parameters to include in the request, such as $expand for related entities.
Debug RequestEnabling this flag will log out the current request.false

List Items

Retrieve a collection of Items with all or some selected properties.

InputCommentsDefault
ConnectionThe SAP Business One connection to use.
Fetch AllWhen true, all records will be fetched automatically by paginating through results. When false, only the number of records specified in $top will be returned.false
TopThe maximum number of items to return. Maximum value is 20.
SkipThe number of items to skip before returning results. Used for pagination.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
FilterAn OData filter expression to apply to the request (e.g., startswith, eq, gt). See OData $filter documentation for filter syntax.
Order ByA comma-separated list of fields to sort by. Add 'asc' or 'desc' after field name for sort direction (e.g., ItemCode desc).
Custom Query ParamsCustom query parameters to include in the request, such as $expand for related entities.
Debug RequestEnabling this flag will log out the current request.false

List Orders

Retrieve a collection of Orders with all or some selected properties

InputCommentsDefault
ConnectionThe SAP Business One connection to use.
Fetch AllWhen true, all records will be fetched automatically by paginating through results. When false, only the number of records specified in $top will be returned.false
TopThe maximum number of items to return. Maximum value is 20.
SkipThe number of items to skip before returning results. Used for pagination.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
FilterAn OData filter expression to apply to the request (e.g., startswith, eq, gt). See OData $filter documentation for filter syntax.
Order ByA comma-separated list of fields to sort by. Add 'asc' or 'desc' after field name for sort direction (e.g., ItemCode desc).
Custom Query ParamsCustom query parameters to include in the request, such as $expand for related entities.
Debug RequestEnabling this flag will log out the current request.false

List Price Lists

Retrieve a collection of PriceLists with all or some selected properties.

InputCommentsDefault
ConnectionThe SAP Business One connection to use.
Fetch AllWhen true, all records will be fetched automatically by paginating through results. When false, only the number of records specified in $top will be returned.false
TopThe maximum number of items to return. Maximum value is 20.
SkipThe number of items to skip before returning results. Used for pagination.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
FilterAn OData filter expression to apply to the request (e.g., startswith, eq, gt). See OData $filter documentation for filter syntax.
Order ByA comma-separated list of fields to sort by. Add 'asc' or 'desc' after field name for sort direction (e.g., ItemCode desc).
Custom Query ParamsCustom query parameters to include in the request, such as $expand for related entities.
Debug RequestEnabling this flag will log out the current request.false

List Purchase Orders

Retrieve a collection of Purchase Orders with all or some selected properties.

InputCommentsDefault
ConnectionThe SAP Business One connection to use.
Fetch AllWhen true, all records will be fetched automatically by paginating through results. When false, only the number of records specified in $top will be returned.false
TopThe maximum number of items to return. Maximum value is 20.
SkipThe number of items to skip before returning results. Used for pagination.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
FilterAn OData filter expression to apply to the request (e.g., startswith, eq, gt). See OData $filter documentation for filter syntax.
Order ByA comma-separated list of fields to sort by. Add 'asc' or 'desc' after field name for sort direction (e.g., ItemCode desc).
Custom Query ParamsCustom query parameters to include in the request, such as $expand for related entities.
Debug RequestEnabling this flag will log out the current request.false

List Records

Retrieve a list of records from SAP Business One.

InputCommentsDefault
ConnectionThe SAP Business One connection to use.
Record TypeThe type of record to use for the operation (e.g., JournalEntries, Activities, BusinessPartners). This corresponds to the Service Layer entity name.
Fetch AllWhen true, all records will be fetched automatically by paginating through results. When false, only the number of records specified in $top will be returned.false
TopThe maximum number of items to return. Maximum value is 20.
SkipThe number of items to skip before returning results. Used for pagination.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
FilterAn OData filter expression to apply to the request (e.g., startswith, eq, gt). See OData $filter documentation for filter syntax.
Order ByA comma-separated list of fields to sort by. Add 'asc' or 'desc' after field name for sort direction (e.g., ItemCode desc).
Custom Query ParamsCustom query parameters to include in the request, such as $expand for related entities.
Debug RequestEnabling this flag will log out the current request.false

List Warehouse Locations

Retrieve a collection of Warehouses Locations with all or some selected properties in the given order by specifying the given filter condition.

InputCommentsDefault
ConnectionThe SAP Business One connection to use.
Fetch AllWhen true, all records will be fetched automatically by paginating through results. When false, only the number of records specified in $top will be returned.false
TopThe maximum number of items to return. Maximum value is 20.
SkipThe number of items to skip before returning results. Used for pagination.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
FilterAn OData filter expression to apply to the request (e.g., startswith, eq, gt). See OData $filter documentation for filter syntax.
Order ByA comma-separated list of fields to sort by. Add 'asc' or 'desc' after field name for sort direction (e.g., ItemCode desc).
Custom Query ParamsCustom query parameters to include in the request, such as $expand for related entities.
Debug RequestEnabling this flag will log out the current request.false

List Warehouses

Retrieve a collection of Warehouses with all or some selected properties in the given order by specifying the given filter condition.

InputCommentsDefault
ConnectionThe SAP Business One connection to use.
Fetch AllWhen true, all records will be fetched automatically by paginating through results. When false, only the number of records specified in $top will be returned.false
TopThe maximum number of items to return. Maximum value is 20.
SkipThe number of items to skip before returning results. Used for pagination.
SelectA comma-separated list of fields to include in the response. If not provided, all fields will be returned and the query may be slower. See OData $select documentation for available fields.
FilterAn OData filter expression to apply to the request (e.g., startswith, eq, gt). See OData $filter documentation for filter syntax.
Order ByA comma-separated list of fields to sort by. Add 'asc' or 'desc' after field name for sort direction (e.g., ItemCode desc).
Custom Query ParamsCustom query parameters to include in the request, such as $expand for related entities.
Debug RequestEnabling this flag will log out the current request.false

Raw Request

Send raw HTTP request to the SAP Business One API

InputCommentsDefault
URLThe API endpoint path only (e.g., Items, Orders, BusinessPartners). The base URL is automatically included based on your connection settings. For example, to access Items, enter 'Items' here and it will be appended to the base URL (https://server:port/b1s/v1 or v2).
MethodThe HTTP method to use.
DataThe HTTP body payload to send to the URL.
Form DataThe Form Data to be sent as a multipart form upload.
File DataFile Data to be sent as a multipart form upload.
File Data File NamesFile names to apply to the file data inputs. Keys must match the file data keys above.
Query ParameterA list of query parameters to send with the request. This is the portion at the end of the URL similar to ?key1=value1&key2=value2.
HeaderA list of headers to send with the request.
Response TypeThe type of data you expect in the response. You can request json, text, or binary data.json
TimeoutThe maximum time that a client will await a response to its request
Debug RequestWhen true, the request and response details will be logged for debugging purposes.false
Retry Delay (ms)The delay in milliseconds between retries. This is used when 'Use Exponential Backoff' is disabled.0
Retry On All ErrorsIf true, retries on all erroneous responses regardless of type. This is helpful when retrying after HTTP 429 or other 3xx or 4xx errors. Otherwise, only retries on HTTP 5xx and network errors.false
Max Retry CountThe maximum number of retries to attempt. Specify 0 for no retries.0
Use Exponential BackoffSpecifies whether to use a pre-defined exponential backoff strategy for retries. When enabled, 'Retry Delay (ms)' is ignored.false
ConnectionThe SAP Business One connection to use.

Update Business Partner

Update an instance of Business Partners

InputCommentsDefault
Card CodeThe unique code identifying the business partner (customer or supplier).
Card NameThe name of the business partner (customer or supplier).
Card TypeThe type of the business partner: Customer (cCustomer), Supplier (cSupplier), or Lead (cLid).
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Update Invoice

Update an instance of Invoices.

InputCommentsDefault
Doc EntryThe document entry number (DocEntry) that uniquely identifies the invoice. This is an integer value.
CommentsThe comments to be added to the modified order.
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Update Item

Update an instance of Items

InputCommentsDefault
Item CodeThe unique code identifying the item in the inventory.
Item NameThe name of the item in the inventory.
Item TypeThe type of the item: Items (itItems), Labor (itLabor), Travel (itTravel), or Fixed Assets (itFixedAssets).
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Update Order

Update an instance of Orders.

InputCommentsDefault
Doc EntryThe document entry number (DocEntry) that uniquely identifies the order. This is an integer value.
CommentsThe comments to be added to the modified order.
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Update Price List

Update an instance of Price Lists.

InputCommentsDefault
Price List NumberThe unique number identifying the price list. This is an integer value.
Price List NameThe name of the price list.
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Update Purchase Order

Update an instance of Purchase Orders.

InputCommentsDefault
Purchase Order Document EntryThe document entry number (DocEntry) that uniquely identifies the purchase order. This is an integer value.
CommentsThe comments to be added to the modified order.
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Update Record

Update an existing record in SAP Business One.

InputCommentsDefault
Record TypeThe type of record to use for the operation (e.g., JournalEntries, Activities, BusinessPartners). This corresponds to the Service Layer entity name.
Record IDThe unique identifier for the record. This is typically an integer value (DocEntry or similar).
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false

Update Warehouse

Update an instance of Warehouses.

InputCommentsDefault
Warehouse CodeThe unique code identifying the warehouse.
Warehouse NameThe name of the warehouse.
Warehouse Location IDThe unique identifier for the warehouse location. This is an integer value.
Body FieldsAdditional fields to include in the request body as a JSON object. These fields will be merged with the other input values.
ConnectionThe SAP Business One connection to use.
Debug RequestEnabling this flag will log out the current request.false