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

    Customer

    {
        "id": 0,
        "name": "string",
        "address": "string",
        "city": "string",
        "phone": "string",
        "ext_cust_no": "string",
        "location": {
            "lat": 0,
            "lon": 0
        },
        "status": true,
        "tags": [
            "string"
        ]
    }
    Built with