User Tools

Site Tools


webapi_swagger_documentation

Windward Web API Swagger 2.0 Documentation

Summary

The s5webAPI solution runs as a 32-bit service and provides a doorway to push and pull information from a System Five database. This technology will work with both on premise installations and our System Five on Cloud deployments.

The following is an explanation for retrieving and using the Swagger 2.0 documentation from all available endpoints of the Windward S5WebAPI. Several endpoints have been marked as deprecated in version 6.2.2.175 which occurred in August of 2018. Deprecated methods will continue to operate but no new development is planned for these areas.

As a developer, keep in mind since this is a 32-bit service, it will not be able to access more than 4GB limited by this address space. Asking for large amounts of data such as inventory should use pagination and will give you better performance and memory utilization.

Be aware that WEB API uses a Pervasive License.
To use TLS 1.2 ensure you are running a version of the webapi above 6.2.4.255.

Endpoints

As of the 6.2.2.175 there are multiple endpoints available for the Windward Web API each providing different functions for the S5WebAPI. These endpoints are the following:

  1. APBill
  2. Category
  3. Customer
  4. Inventory
  5. Invoice
  6. Keyword
  7. Units
  8. Vendors
  9. VirtualInventory
  10. TServerMethodsWebAPI

All of these endpoints can be accessed with the following URL:

Deprecated Methods

As of the 6.2.2.175 the following methods in the endpoint TServerMethodsWebAPI are deprecated. Deprecated methods will continue to operate but no new development is planned for these.

  1. Customers_Insert
  2. Customer_Read
  3. Customers_Update
  4. Get_Customers
  5. List_Customers
  6. Parts_Read
  7. Parts_Update
  8. Get_Parts
  9. List_Parts
  10. Insert_Parts
  11. Get_Main_Categories
  12. Get_Categories
  13. Suppliers_Insert
  14. Suppliers_Read
  15. Suppliers_Update
  16. Get_Suppliers
  17. List_Suppliers
  18. Invoices_Insert
  19. Invoices_Get
  20. Invoices_Update
  21. Invoices_Read
  22. Insert_Full_Invoice
  23. Insert_AP_Bill
Any new software development should make use of new methods found within a domains endpoint.

Known Limitations

Prior to 6.2.2.175 released versions of the Web API had a maximum limit of 32 concurrent connections. This limit has been removed and is now limited by how much available memory (max 4GB as this is a 32-bit service) running the API.

The Swagger 2.0 interface is only supported via HTTP, it is not supported via HTTPS. The other methods described below can be used when HTTPS is the only protocol configured.

Setup and Configuration Details

Configuring both HTTP and HTTPS is not required, but in order to support HTTPS communication and allow the use of the Swagger interface, both need to be configured.

Azure Hosting - Network Security - Both the HTTP Port 80 and the HTTPS Port 443 need to be opened in order to allow external communication. The use of other Ports can be supported, but it is recommended that the standard HTTP - 80 and/or HTTPS - 443 be used to eliminate confusion.

Azure VM - Firewall Rules - Inbound rules for the same HTTP Port 80 and/or HTTPS port 440 need to be added.

The specific instance of the S5WebAPISvc.exe needs to have UDP and TCP Inbound rules to allow communication.

Azure Environment Variables on the VM - A System Environment Variable named S5INIPATH must exists and contain the path to the SystemFive_SaaS.ini file that is used by System Five SaaS to launch the application. This INI file should already exists and be in use by the installation of SystemFiveSaaS.exe. The API now uses this same INI file to obtain required settings.

Retrieving The Documentation

The Swagger documentation for a particular endpoint can be retrieved by using a method of the endpoint. Using your preferred method or app (we suggest Postman), send a GET request to the following URL:

The contents of the response from the calls are the Swagger 2.0 documentation, after copying the response text and saving it into a text file using your preferred Swagger editor (we suggest editor.swagger.io) to view the Swagger documentation.

You can also turn on “Enable Swagger Publishing” in your S5WebAPISvc.ini and which will be located in the bin folder of the System Five application. You will then be able to interact with the Swagger 2.0 documentation and the Web API through a browser, without using Postman or a Swagger editor.

Interacting With The Swagger 2.0 Documentation Via A Browser

  1. As of release 6.2.2.179 Swagger 2.0 documentation can be viewed and interacted with through a browser.
  2. Using a set of options in the S5WebAPISvc.ini file, the configuration of the Swagger Publishing can be set and changed.
  3. Once the S5WebAPISvc.ini options have been set, and the WebAPI service is running, open a web browser and enter localhost:PORT/index.html into the address bar
    1. Where PORT is the port under the Swagger Publishing options in S5WebAPISvc.ini
  4. After entering the WebAPI credentials and clicking the 'Submit' button, the swagger-ui page will be shown.
  5. On this page, edit the contents of the search/explore bar. Changing the values for PORT, and ENDPOINT
    1. PORT is the port that the WebAPI is listening on (specified in S5WebAPISvc.ini, under the HTTP/HTTPS option)
    2. ENDPOINT is any one of the endpoints of the WebAPI.
  6. After clicking on the 'Explore' button and waiting for the Swagger 2.0 documentation to load, click on the 'Authorize' button and reenter the WebAPI credentials, this must be done before being able to call any of the endpoint's methods.
  7. Once authorized the Swagger 2.0 documentation and WebAPI service can be interacted with.
    1. By clicking on an API method, the page will show more information for the method.
    2. Clicking the 'Try It Out' button allows users to enter parameters, and run the method.
    3. Clicking the 'Execute' button will send the method and it's parameters (if any) to the API, giving back the API's response.
You will need to click the Authorize button and enter correct credentials to avoid a 401 Unauthorized response.

Getting The Swagger 2.0 Documentation Using Postman

  1. Open Postman.
  2. Set the request type to GET.
  3. Enter one of the URLs, substituting the API_IP_ADDRESS, API_PORT and ENDPOINT placeholders with the appropriate information for your Web API installation:
  4. Set the authorization type to Basic and enter your Web API credentials.
  5. Send the request.
  6. Copy the complete text in the Response area and save it as a text file.

Getting The Swagger 2.0 Documentation Into editor.swagger.io

  1. Open the json file in a text editor and copy the contents to your clipboard
  2. Open a web browser (Google Chrome, for example) and navigate to the following URL:
  3. Click on the 'File' menu.
  4. Click on 'Paste JSON'.
  5. In the Swagger 2.0 documentation dialog Right click and choose Paste from your clipboard
  6. Click on 'Import' button.
  7. The list of available methods is now listed on the right side of the screen. Each method has two sections, a Parameters, and a Response section, these sections outline the format for both the request parameters and the response.

Samples

Sending blank strings for data fields could wipe out the values that exist in the database and unintentionally cause problems. Only send data that you actually want the receiving API to process.

What Version are you using?

Depending on the feature you may be looking for in an endpoint you may need to know what version you are running. It is common to have a training and production WebAPI configured when testing new features. Assuming the API is running and you are authenticated, you can access the application version using the TServerMethodsWebAPI and the Connect endpoint.

{"result":[{"Response":"Success","CompanyName":"System Five","Serial":"103000",
"Department":"1","ApplicationVersion":"6.2.2.350","DataVersion":"6.2.2.21"}]}

Release 6.2.4.x History

  • Review Further Release notes for the Area changed: Web API
  • Version 6.2.4.185 - December 7, 2020
    • [ TFS 41605 / 58429 ] - The Inventory Changes end point has been enhanced to include changes in the stock level, not just the changes inventory records. The End Point will now include the changes made by Purchase Orders and Sales Invoices.
  • Version 6.2.4.141 - October 2, 2020
    • [ TFS 40116 ] - Web API: Added Logging information to the Web API Service to help determine the root cause of some runaway processes on the cloud.
  • Version 6.2.4.113 - August 14, 2020
    • [ TFS 36512 ] - The /addInventory method in the Inventory end point of the S5WebAPI is failing to find the non-Supplier Default records when adding Parts when the Item Code feature is enabled in System Five.
  • Version 6.2.4.80 - July 6, 2020
    • [ TFS 37259 ] - Web API Fix: to Inventory Changes endpoint to ensure proper functionality with pages.
  • Version 6.2.4.65 - June 19, 2020
    • [ TFS 31992 / 58075 ] Web API Fix: to include an email in the /Invoice/AddInvoice endpoint in InvoiceBilling & InvoiceShipping.
  • Version 6.2.4.10 – April 2, 2020
    • [ TFS 33670 / 58200 ] Web API Fix: eCommerceExport=Y filter was not working for /InventoryChanges method

Release 6.2.2.x History

  • Review further Beta Release notes for the Area changed: Web API
  • Version 6.2.2.636 – March 12, 2020
    • [ TFS 32447 / 58176 ] The Inventory/ End Point methods now accepts a Department Parameter to reduce the volume of data returned by the API by limiting Stock, Price, and Sale Date information to the requested Department. Also matched the contents of the Returned Pricing to the object listed in the Swagger documentation.
  • Version 6.2.2.632 – March 12, 2020
    • TFS 32056 / 58157 ] Corrected the Insert of new Inventory by the S5WebAPISvc to deal with situations where the Item, Part and Supplier Part are all different in a data set. This is not a typical configuration and the system was not handling the lookup of the Virtual Warehouse records correctly in this specific configuration.
  • Version 6.2.2.631 – March 3, 2020
    • TFS 31638 Updated S5WebAPI Invoice endpoint to accept invoice line comments.
  • Version 6.2.2.596 – January 30, 2020
    • [ TFS 17171 / 57749 ] Fix on /AddInventory endpoint. Did not update weight; ecommerce fields.
  • Version 6.2.2.546 – December 2, 2019
    • [TFS 22644 / 57862] Corrected the way Tax Areas are assigned when using the deprecated /Insert_Full_Invoice end point in the WebAPI.
  • Version 6.2.2.540 – November 26, 2019
    • [TFS 19490 / BZ 57767] Added Web Comment support to the /addInventory endpoint.
  • Version 6.2.2.536 – November 20, 2019
    • [BZ 57751 / TFS 19694] Corrected the cause of the crashing by preventing the API from returning all of the invoices when the ZERO parameter is passed. The API now returns nothing in that case. Added 2 new methods to address the need to obtain more than one invoice from the API in a single call.
  • Version 6.2.2.535 – November 20, 2019
    • [57691/TFS 19695] Two new endpoints have been added to the S5WebAPI to provide faster and more efficient access to the information provided by the Record State Tracking feature.
    • GET Customer/CustomerChanges returns all of the customer records that have changed in a single call. This is more efficient than TServerMethodsWebAPI/Get_Customer_Changes method which required a second call to obtain the customer field information.
    • GET Inventory/InventoryChanges returns a small subset of the inventory record, only the UniqueID, Sale Start and End Dates, Pricing and In Stock Quantity are returned. This makes the call far faster and provides the information most commonly used for updating an online shopping cart.
  • Version 6.2.2.517 – October 29, 2019
    • [TFS 20705] Fix for S5WebAPISvc that was broken due to new data collector list load.
  • Version 6.2.2.491 – September 17, 2019
    • [57680] Corrected a problem that prevented the pagination from working correctly in the Inventory End Point with S5WebAPI service.
  • Version 6.2.2.474 – September 6, 2019
    • [57690] Updated the logging to Log Analytics to better report the start and finish of each API call.
  • Version 6.2.2.441 – July 15, 2019
    • [57554] Corrected a problem in the \addInvoice method of the S5WebAPISvc's Invoice endpoint. In previous versions, the Billing and Shipping information was not correctly setting the Tax Area on the Invoice and in some specific cases, new Customers were not being added to the system.
  • Version 6.2.2.400 – June 10, 2019
    • [57332] Added KitType, Weight, Instock by Dept, SaleStart, SaleEnd, AltSuply, and Barcodes information to the GET /Inventory endpoint of the S5WebAPI
    • [56751] The ability to populate Alt Supply records and Barcode records is now supported in the GET /Inventory endpoint.
    • AltSupply: This is a structure that must be populated in order to create the desired record and association with the Inventory record. The Swagger documentation contains a complete and detailed model of the required fields and their purposes.
    • Barcodes: This is a structure that must be populated in order to create the desired record and association with the Inventory record. The Swagger documentation contains a complete and detailed model of the required fields and their purposes.
  • Version 6.2.2.395 – June 4, 2019
    • [57350] The S5WebAPI /Inventory endpoint now includes the web comment data.
    • [57267] An e-Commerce filter has been added to the /Inventory endpoint of the S5WebAPI.
    • [56767] Virtual Warehouse is now considered by the S5WebAPI and the behavior is consistent with System Five.
  • Version 6.2.2.369 – May 7, 2019
    • [57327] Added “Get_Parts_V2” S5WebAPI endpoint that will return inventory information as well as additional JSON node with matrix parent item unique number.
  • Version 6.2.2.278 – February 26, 2019
    • [56852] Added support for billing and shipping account lookup by account details with Invoice-AddInvoice endpoint for S5WebAPI.
  • Version 6.2.2.269 – February 14, 2019
    • [56999] Added pagination to the Inventory, Virtual Inventory, Customer and A/P Bill endpoints to eliminate calls that exceed the maximum number of records that the S5WebAPISvc can handle.
  • Version 6.2.2.214 – November 30, 2018
    • [56482] Found and solved a problem when the API is passed an invalid Department value.
  • Version 6.2.2.211 - December 27, 2018
    • [56750] Removed the duplicate error from the Free Form information in the WebAPI for Polaris Integration.
  • Version 6.2.2.188 - September 4, 2018
    • [56391] WebAPI: Fixed fields not getting updated in Customer methods.
    • [56404] WebAPI: Fixed errors when calling Insert_Invoice_Lines and Delete_Full_Invoice.
  • Version 6.2.2.183
    • [56351] WebAPI: Fixed fields not getting updated when using the Suppliers_Update call.
    • [56372] WebAPI: Added support for invoice totals, taxes, and amounts paid to invoices created by the WebAPI.
  • Version 6.2.2.182
    • [54843] WebAPI: Added support for the needed fields for the Virtual Inventory WebAPI methods.
  • Version 6.2.2.181
    • [56047] WebAPI: Fixed broken legacy calls, unexposed Put calls, and updated Swagger documentation.
    • [56349] WebAPI: Fixed Get_Superseding_Parts to properly return an array of superseding parts.
  • Version 6.2.2.180
    • [56191] WebAPI: Added the Swagger-Publishing subfolder to the client bin to support the Swagger documentation for the S5WebAPI.
  • Version 6.2.2.179
    • [56335] WebAPI: Port System Five WebAPI service (S5WebAPISvc) to Release.
  • Version 6.2.2.178
    • [56020] WebAPI: Made the WebAPI aware of the data version it is connecting to, only connecting to data version it was compiled with. Swagger documents now show the data version number.
    • [56242] WebAPI: Added support to the Invoice endpoint for Keywords on Invoice Lines.
    • [56268] WebAPI: Added Big Rock Quantity lookup to Part Find.
    • [55003] WebAPI: Solved the problems with the Change_Invoice_Type and Perform_Stock_Adjustment endpoints.
  • Version 6.2.2.175 - August 08, 2018
    • [56297] WebAPI: Get_Part_Prices call would now acknowledge the set Effective Date.
    • Prior to 6.2.2.175 the Web API has a maximum limit of 32 concurrent connections. This limit has been removed and is now limited by how much available memory (max 4GB as this is a 32-bit service) running the API.
  • Version 6.2.2.172 - July 24, 2018
    • [55894] Web API: Fixed the Get_Customer_By_Email POST method.
  • Version 6.2.2.168
    • [54843] Web API: Added support for the needed fields for the Virtual Inventory Web API methods.
    • [54703] Web API: Fixed the Get_Parts POST method to return the list of linked Free Form Comments.
  • Version 6.2.2.163
    • [55777] WebAPI: The Part Image fetch is now constrained to accept a single part unique at a time. This is required to prevent the API from running out of memory trying to build a JSON object that contains 500KB of encoded data for the entire inventory file. It simply is not possible to create a JSON document that large.
  • Version 6.2.2.161
    • [55898] WebAPI: The Customer, Supplier, and Invoice List endpoints have been updated to POST Commands that accept a Body containing the Field and/or Filter items.
  • Version 6.2.2.160
    • [55895] WebAPI: Fixed the Get_Parts POST method to return the list of linked Lookup Words.
    • [55924] WebAPI: Polaris Dealers can now select the System Five Supplier that their Polaris Parts are linked to for the purposes of reporting to the Process Parts Inventory feature of the Polaris integration.
  • Version 6.2.2.154
    • [55313] Cloud WebAPI: Solved blank field issues.
    • [55859] WebAPI: Fixed an access violation error when importing inventory with the S5WebAPI and seasonal highs / lows enabled in System Five.
  • Version 6.2.2.150 - April 26, 2018
    • [55692] Solve the User/Threading issues in the WebAPI.
  • Version 6.2.2.148
    • [54977] The Inventory Value reporting is now exposed through the S5WebAPISvc.

Beta 6.2.7.x History

There can be functionality available in our beta that will not be present in our released product. Typically new enhancement work is completed in this release.

  • Version 6.2.7.696 - December 9, 2020
    • [ TFS 41605 / 58429 ] - The Inventory Changes end point has been enhanced to include changes in the stock level, not just the changes inventory records. The End Point will now include the changes made by Purchase Orders and Sales Invoices.
  • Version 6.2.7.615 - August 14, 2020
    • [ TFS 36512 ] - The /addInventory method in the Inventory end point of the S5WebAPI is failing to find the non-Supplier Default records when adding Parts when the Item Code feature is enabled in System Five.
  • Version 6.2.7.562 – April 28, 2020
    • [ TFS 34807 ] Fix for /AddInventory endpoint in S5webapi not updating list price. (Beta only)
  • Version 6.2.7.530 – March 25, 2020
    • [ TFS 33670 / 58200 ] Web API Fix: eCommerceExport=Y filter was not working for /InventoryChanges method
  • Version 6.2.7.524 – March 17, 2020
    • TFS 31638 Updated S5WebAPI Invoice endpoint to accept invoice line comments.
  • Version 6.2.7.517 – March 11, 2020
    • [ TFS 32056 / 58157 ] Corrected the Insert of new Inventory by the S5WebAPISvc to deal with situations where the Item, Part and Supplier Part are all different in a data set. This is not a typical configuration and the system was not handling the lookup of the Virtual Warehouse records correctly in this specific configuration.
    • [ TFS 32447 / 58176 ] The Inventory/ End Point methods now accepts a Department Parameter to reduce the volume of data returned by the API by limiting Stock, Price, and Sale Date information to the requested Department. It also matched the contents of the Returned Pricing to the object listed in the Swagger documentation.
  • Version 6.2.7.425 – December 2, 2019
    • [TFS 22644 / 57862] Corrected the way Tax Areas are assigned when using the deprecated /Insert_Full_Invoice endpoint in the WebAPI.
  • Version 6.2.7.396 – October 29, 2019
    • [TFS 20705] Fix for S5WebAPISvc that got broken due to new data collector list load.
  • Version 6.2.7.418 – November 26, 2019
    • [TFS 19490 / BZ 57767] Added Web Comment support to the /addInventory endpoint.
  • Version 6.2.7.415 – November 21, 2019
    • [57691/TFS 19695] Two new endpoints have been added to the S5WebAPI to provide faster and more efficient access to the information provided by the Record State Tracking feature.
    • GET Customer/CustomerChanges returns all of the customer records that have changed in a single call. This is more efficient than TServerMethodsWebAPI/Get_Customer_Changes method which required a second call to obtain the customer field information.
    • GET Inventory/InventoryChanges returns a small subset of the inventory record, only the UniqueID, Sale Start and End Dates, Pricing and In Stock Quantity are returned. This makes the call faster and provides the information most commonly used for updating an online shopping cart.
  • Version 6.2.7.414 – November 21, 2019
    • [BZ 57751 / TFS 19694] Corrected the cause of the crashing by preventing the API from returning all of the invoices when the ZERO parameter is passed. The API now returns nothing in that case. Added 2 new methods to address the need to obtain more than one invoice from the API in a single call.
  • Version 6.2.7.396 – October 29, 2019
    • [TFS 20705] Fix for S5WebAPISvc that was broken due to a new data collector list load.
  • Version 6.2.7.360 – September 11, 2019
    • [57680] Corrected a problem that prevented the pagination from working correctly in the Inventory End Point with S5WebAPI service.
  • Version 6.2.7.351 – September 6, 2019
    • [57690] Updated the logging to Log Analytics to better report the start and finish of each API call.
  • Version 6.2.7.309 – July 15, 2019
    • [57554] Corrected a problem in the \addInvoice method of the S5WebAPISvc's Invoice endpoint. In previous versions, the Billing and Shipping information was not correctly setting the Tax Area on the Invoice and in some specific cases, new Customers were not being added to the system.
  • Version 6.2.7.297 – July 4, 2019
    • 57526 S5WebAPISrv - Inventory End Points have been updated to support all of the configured default inventory records and allow for the configuration of prices based on the Price Codes, using Prices, Markups, Margins or Discounts within the bounds of the maximum number of Price Schedules configured in the system. There is no provision to allows the external systems to change the number of Price Schedules. Click here for more information.
  • Version 6.2.7.265 – June 6, 2019
    • [57332] Added KitType, Weight, Instock by Dept, SaleStart, SaleEnd, AltSuply, and Barcodes information to the GET /Inventory endpoint of the S5WebAPI.
    • [56751] The ability to populate Alt Supply records and Barcode records is now supported in the GET /Inventory endpoint.
    • AltSupply: This is a structure that must be populated in order to create the desired record and association with the Inventory record. The Swagger documentation contains a complete and detailed model of the required fields and their purposes.
    • Barcodes: This is a structure that must be populated in order to create the desired record and association with the Inventory record. The Swagger documentation contains a complete and detailed model of the required fields and their purposes.
  • Version 6.2.7.261 – June 4, 2019
    • [57350] The S5WebAPI /Inventory endpoint now includes the web comment data.
    • [57267] An e-Commerce filter has been added to the /Inventory endpoint of the S5WebAPI.
    • [56767] Virtual Warehouse is now considered by the S5WebAPI and the behavior is consistent with System Five.
  • Version 6.2.7.251 – May 28, 2019
    • [57216] Added logging audit to S5WebAPI.
  • Version 6.2.7.248 – May 24, 2019
    • [57425] Added additional logging to the web API when audit is enabled.
  • Version 6.2.7.223 – May 1, 2019
    • [57327] Added “Get_Parts_V2” S5WebAPI endpoint that will return inventory information as well as additional JSON node with matrix parent item unique number.
  • Version 6.2.7.157 – February 28, 2019
    • [56999] Added pagination to the Inventory, Virtual Inventory, Customer and A/P Bill endpoints to eliminate calls that exceed the maximum number of records that the S5WebAPISvc can handle.

Common Errors/Issues

Best practices when troubleshooting errors or issues for escalation with engineering or another technician.

  • Check the logs and capture the specific error message text (with an export of the logs or screenshot)
  • Capture the complete S5webapi INI file settings
  • Any other relevant information such as the operating systems (Are windows updates applied)

Getting POS Failure! {“error”:“Assertion failure (R:\system5\projects\prgs\FullInvoice.pas, line 50886)”} when pushing an order through WEB API .

Reasons : The JSON that is being used is invalid.

Only 1 InvoiceLines Array is allowed. The Description must only have 255 characters MAXIMUM! The database will throw away anything longer. The Invoice Comment must not contain invalid characters. (Carriage Returns and Line Feeds)

Additional information: You do not need to include the InvoiceCustomer / InvoiceShipTo unique numbers AND the InvoiceShipping / InvoiceBilling One or the other is all that is required. If you know the Unique Numbers, use them. The system will ignore InvoiceShipping and InvoiceBilling data. If you don’t, then use the InvoiceShipping and InvoiceBilling. The system will look-up the Account records or create them.

Here is what it should look like:

{
  "Invoice": [
    {
      "InvoiceHeader": {
        "InvoiceSubTotal": 87,
        "InvoiceTaxTotal": 8.97,
        "InvoiceOrdered": "2019-08-13T16:15:11.282Z",
        "InvoiceDate": "2019-08-13T16:15:11.282Z",
        "InvoiceType": "W",
        "InvoiceSubType": "O",
        "InvoiceDepartment": 0,
        "InvoiceBookMonth": "2019-08-13T16:15:11.282Z",
        "InvoiceCustomer": 31599,
        "InvoiceShipTo": 31599,
        "InvoiceSalesman": 1,
        "InvoiceComment": "This is a test order. Please do not process! Item 1: This is a delivered product. Delivery 321 elm street  60607 Business. Product Name: Arrangement. Product Options: Color: Earth - 0, Size: Large - 20, Delivery: 60607 - 17. Recipient: TesterChicago, 3332221111, [email protected]. Card message: Hi, nnLook forward to you receiving these testing flowers.nnJoe. Delivery date 08/31/19."
      },
      "InvoiceTenders": [
        {
          "Type": "O",
          "Amount": 95.92
        }
      ],
      "InvoiceLines": [
        {
          "PartUnique": 15868,
          "Ordered": 1,
          "Price": 50,
          "Description": "This is a test order. Please do not process!"
        },
        {
          "Part": "SHIPPING",
          "Ordered": 1,
          "Price": 17,
          "Description": "SHIPPING/DELIVERY"
        }
      ]
    }
  ],
  "ConnectionInfo": {
    "TerminalNumber": 0
  }
}

You can prevent all of these problems by simply checking the JSON payload in a JSON editor like: https://jsoneditoronline.org/

Adding Newline Feed on Invoice Comment

In /addInvoice method, you can add Invoice Comment. In the parameter, look for this field “InvoiceComment” and add your comment.

To add a new line feed, add this \\n in the comment.

Access Violation when making API call

When troubleshooting the s5webAPI if receiving an access violation when making an API call, XML may require re-installation.

Getting a User Security Error on WordsToo.btr

If you are presented with a “User # Security Error on WordsToo.btr. User Record has been tampered with” message.

The reason for this error message is due to the user account being locked out or expired and the S5webapi is trying to login using those credentials.

To resolve this issue:

  1. Go to Setup Wizard > Users and Security > Go to user # (It is the WEB API log in)
  2. Uncheck the lockout tick box or reset the password
  3. Ensure the password is the same in the WebAPI.INI configuration
  4. Restart the S5WebAPI
  5. Optionally test the S5WebAPI using swagger if configured

LogAnaylytics:Socket Connection Error 10060

This happens when the Log Analytics workspace is unreachable. The API service keeps trying to connect to the workspace which causes it to use too much CPU on the client's server.

As a workaround, we removed the Log Analytics argument from the ini file.

Once it is removed, CPU usage goes back to normal.

webapi_swagger_documentation.txt · Last modified: 2022/02/23 13:40 (2 years ago) by kevin