- 🐶 Walk through Apidog
- Sample APIs
- Vendor Managment
- Update Vendor Basic Info
- Update Vendor Document
- Update Deposit Info
- Add daily milk sale
- Fetch Daily sales by vendor
- Fetch Specific daily milk sale
- Update daily milk sale
- Delete daily sale
- Bulk Upload Milk Sales
- Fetch daily sales milk by date
- Add Payment
- Update Payment
- Fetch Vendor Payments
- Fetch Vendor Payments By Id
- Fetch payment by id
- Delete
- Create Milk price change
- Update milk price changes
- Fetch milk price revisions
- Fetch milk price revision
- Delete Milk price revision
- Regenrate vendor bill
- Archive Vendor
- Restore Vendor
- Fetch Daily sales
- Employee
- Animal
- Green Fooder
- Purchase Dry Fooder
- Concentrate Dry Fooder
- Add Concentrate Dry Fooder
- Update Concentrate Dry Fooder Copy
- Fetch Concentrate Dry Fooders
- Fetch Concentrate Dry Fooders By Id
- Delete Concentrate Dry Fooder Id
- Fetch Concentrate Dry Fooders Stocks
- Add Concentrate Dry Fooder Usage
- Update Concentrate Dry Fooder Usage
- Delete Concentrate Dry Fooder Id Daily usage
- Add feed global settings
- Update feed global settings
- Fetch Concentrate Dry Fooders
- Add feed management global setting
- Add feed management global setting Copy
- Settings
- Milk
- Outlet
- Add Production UnitPOST
- Add OutletPOST
- Fetch outletsGET
- Fetch specific outletGET
- Update outletPUT
- Fetch outlet listGET
- Add ProductPOST
- Fetch productsGET
- Fetch specific productGET
- Update ProductPUT
- Remove ProductDELETE
- Fetch Product ListGET
- Add Daily ProductionPOST
- Update Daily productionPUT
- Fetch daily productionsGET
- Fetch specific daily productionGET
- Remove Daily ProductionsDELETE
- Add Outlet StockPOST
- Update StockPUT
- Remove Outlet stockDELETE
- Fetch daily stocksGET
- Fetch specific daily stockGET
- Add Outlet SalesPOST
- Update outlet salePUT
- Remove Outlet saleDELETE
- Fetch salesGET
- Add Outlet CustomerPOST
- Update OutletPUT
- Fetch daily customersGET
- Fetch specific customerGET
- Fetch customers listGET
- Add Outlet Customer PaymentPOST
- Update Customer PaymentPUT
- Fetch customer outlet paymentsGET
- Fetch specific customer CopyGET
- Delete Customer PaymentDELETE
- Add Outlet Customer Payment CopyPOST
- Update PaymentPUT
- Fetch outlet paymentsGET
- Fetch specific outlet paymentGET
- Delete Outlet PaymentDELETE
- Daily Production bulkPUT
- Fetch daily productionGET
- Outlet Stocks BulkPUT
- Fetch outlet stocksGET
- Outlet Stocks Bulk CopyPUT
- Fetch outlet salesGET
- Add Price revisionPOST
- Update Price revisionPUT
- Delete Outlet Payment CopyDELETE
- Fetch product price revisionsGET
- Fetch specific product price revisionGET
- Regenrate vendor bill CopyPUT
- Fetch BillsGET
- Approve outlet billsPUT
- Regenrate outlet customerPUT
- Approve customer outlet billsPUT
- Fetch Production InventoriesGET
- Fetch customer BillsGET
- Fetch specific product CopyGET
- Archive OutletDELETE
- Fetch Outlet InventoriesGET
- Raw milk usage bulkPUT
- fetch raw milk usage by dateGET
- Raw milk wastage bulkPUT
- fetch raw milk wastage by dateGET
- Fetch outlets ledgersGET
- Fetch outlets ledgers by outletIdGET
- Fetch outstanding balanecGET
- General Expenses
- General Goods Sale
- Profit and Loss
- payroll
- Reports
- Test
- insurance
- SubAdmin
- Unsecured Liabilities
- Create Lender
- Update Lender
- Fetch Lenders
- Fetch Lenders By id
- Fetch Lenders stats
- Delete lender
- Create Lending TXN
- Update Lending TXN
- Fetch Loans
- Fetch Loan By id
- Delete loan
- Create Repayment
- Update Repayment
- Delete repayment
- Fetch Repayments
- Fetch Loan By id Copy
- Presigned url
- Fetch lending_txn_ids
- Fetch Lenders By id Copy
- Fetch Loan By id report
Update Outlet
Developing
PUT
/outlet-customers/{{id}}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params multipart/form-data
customerName
string
required
Example:
Satyendra
mobileNumber
string
required
Example:
+917894561236
email
string
optional
Example:
sat@gmail.com
address
string
optional
city
string
optional
state
string
required
Example:
ffdgfd
pincode
string
required
Example:
789456
Match pattern:
^[0-9]{6}$
paymentType
enum<string>
required
Allowed values:
monthlydailybiweekly
Example:
weekly
image
file
optional
Example:
file://C:\Users\Dell\Downloads\billReports (13).pdf
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PUT '/outlet-customers/{{id}}' \
--form 'customerName="Satyendra"' \
--form 'mobileNumber="+917894561236"' \
--form 'email="sat@gmail.com"' \
--form 'address=""' \
--form 'city=""' \
--form 'state="ffdgfd"' \
--form 'pincode="789456"' \
--form 'paymentType="weekly"' \
--form 'image=@"C:\\Users\\Dell\\Downloads\\billReports (13).pdf"'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-10-01 13:10:45