- 🐶 Walk through Apidog
- Sample APIs
- Vendor Managment
- Update Vendor Basic InfoPUT
- Update Vendor DocumentPUT
- Update Deposit InfoPUT
- Add daily milk salePOST
- Fetch Daily sales by vendorGET
- Fetch Specific daily milk saleGET
- Update daily milk salePUT
- Delete daily saleDELETE
- Bulk Upload Milk SalesPUT
- Fetch daily sales milk by dateGET
- Add PaymentPOST
- Update PaymentPOST
- Fetch Vendor PaymentsGET
- Fetch Vendor Payments By IdGET
- Fetch payment by idGET
- DeleteDELETE
- Create Milk price changePOST
- Update milk price changesPUT
- Fetch milk price revisionsGET
- Fetch milk price revisionGET
- Delete Milk price revisionDELETE
- Regenrate vendor billPUT
- Archive VendorDELETE
- Restore VendorGET
- Fetch Daily salesGET
- Employee
- Animal
- Green Fooder
- Purchase Dry Fooder
- Concentrate Dry Fooder
- Add Concentrate Dry FooderPOST
- Update Concentrate Dry Fooder CopyPUT
- Fetch Concentrate Dry FoodersGET
- Fetch Concentrate Dry Fooders By IdGET
- Delete Concentrate Dry Fooder IdDELETE
- Fetch Concentrate Dry Fooders StocksGET
- Add Concentrate Dry Fooder UsagePOST
- Update Concentrate Dry Fooder UsagePUT
- Delete Concentrate Dry Fooder Id Daily usageDELETE
- Add feed global settingsPOST
- Update feed global settingsPUT
- Fetch Concentrate Dry FoodersGET
- Add feed management global settingPOST
- Add feed management global setting CopyPOST
- Settings
- Milk
- Outlet
- Add Production Unit
- Add Outlet
- Fetch outlets
- Fetch specific outlet
- Update outlet
- Fetch outlet list
- Add Product
- Fetch products
- Fetch specific product
- Update Product
- Remove Product
- Fetch Product List
- Add Daily Production
- Update Daily production
- Fetch daily productions
- Fetch specific daily production
- Remove Daily Productions
- Add Outlet Stock
- Update Stock
- Remove Outlet stock
- Fetch daily stocks
- Fetch specific daily stock
- Add Outlet Sales
- Update outlet sale
- Remove Outlet sale
- Fetch sales
- Add Outlet Customer
- Update Outlet
- Fetch daily customers
- Fetch specific customer
- Fetch customers list
- Add Outlet Customer Payment
- Update Customer Payment
- Fetch customer outlet payments
- Fetch specific customer Copy
- Delete Customer Payment
- Add Outlet Customer Payment Copy
- Update Payment
- Fetch outlet payments
- Fetch specific outlet payment
- Delete Outlet Payment
- Daily Production bulk
- Fetch daily production
- Outlet Stocks Bulk
- Fetch outlet stocks
- Outlet Stocks Bulk Copy
- Fetch outlet sales
- Add Price revision
- Update Price revision
- Delete Outlet Payment Copy
- Fetch product price revisions
- Fetch specific product price revision
- Regenrate vendor bill Copy
- Fetch Bills
- Approve outlet bills
- Regenrate outlet customer
- Approve customer outlet bills
- Fetch Production Inventories
- Fetch customer Bills
- Fetch specific product Copy
- Archive Outlet
- Fetch Outlet Inventories
- Raw milk usage bulk
- fetch raw milk usage by date
- Raw milk wastage bulk
- fetch raw milk wastage by date
- Fetch outlets ledgers
- Fetch outlets ledgers by outletId
- Fetch outstanding balanec
- 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 Concentrate Dry Fooder Copy
Developing
PUT
/admin/concentrate-dry-fooders
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
feedType
string
required
vendorName
string
required
mobileNumber
string
required
address
string
optional
city
string
optional
state
string
optional
pincode
string
optional
quantity
number
required
unitPrice
number
required
purchaseDate
string
required
remarks
string
optional
vehicleNumber
string
optional
anyExpenses
string
optional
loadingCharges
number
required
transportationCharges
number
required
paymentStatus
string
optional
Example
{
"feedType": "ABC",
"vendorName": "voluptatibus temporibus exercitationem",
"mobileNumber": "+917894561236",
"address": "est minim cillum velit dolor",
"city": "Plymouth",
"state": "est Excepteur esse qui",
"pincode": "esse elit minim eiusmod",
"quantity": 100,
"unitPrice": 10,
"purchaseDate": "2024-09-10",
"remarks": "officia velit mollit esse et",
"vehicleNumber": "laboris",
"anyExpenses": 74,
"loadingCharges": "Ut do",
"transportationCharges": 6589574.118816659,
"paymentStatus": "anim"
}
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 --request PUT '/admin/concentrate-dry-fooders' \
--header 'Content-Type: application/json' \
--data-raw '{
"feedType": "ABC",
"vendorName": "voluptatibus temporibus exercitationem",
"mobileNumber": "+917894561236",
"address": "est minim cillum velit dolor",
"city": "Plymouth",
"state": "est Excepteur esse qui",
"pincode": "esse elit minim eiusmod",
"quantity": 100,
"unitPrice": 10,
"purchaseDate": "2024-09-10",
"remarks": "officia velit mollit esse et",
"vehicleNumber": "laboris",
"anyExpenses": 74,
"loadingCharges": "Ut do",
"transportationCharges": 6589574.118816659,
"paymentStatus": "anim"
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-09-13 07:43:05