SalesMania
    SalesMania
    • Authentication & Select Database
      • Get bearer token from Basic Auth
        GET
      • Get list of databases
        GET
      • Get team token for a selected database
        GET
    • Customers
      • Get customers
        GET
      • Add new customer
        POST
      • Get customer by ID
        GET
      • Update customer by ID
        PATCH
      • Delete customer by ID
        DELETE
    • Products
      • Get products
        GET
      • Add new product
        POST
      • Get product by ID
        GET
      • Update product by ID
        PATCH
      • Delete product by ID
        DELETE
    • Visits
      • Get visits
        GET
      • Add new visit
        POST
    • Orders
      • Add new order
        POST
      • Get order by ID
        GET
      • Update order by ID
        PATCH
    • Team
      • Get teams
        GET
    • Schemas
      • Customer
      • Product
      • Ext Order
      • Webhook External Order

    Product

    {
        "name": "string",
        "description": "string",
        "sku": "string",
        "tags": [
            "string"
        ],
        "status": true,
        "ext_product_code": "string",
        "default_disc": "5",
        "qty_on_hand": 0,
        "product_units": [
            {
                "name": "string",
                "price": 0,
                "ratio": 1
            }
        ]
    }
    Built with