Create Vendor Masters API
Inbound | POST | /master/vendors
Summary
This API creates vendor masters in Increff system.
Description
ERP systems recognise their vendors/suppliers with a code which is commonly referred to as vendor code. This API can be used to create vendors corresponding to the ERP vendors in Increff Omni.
Request body
{
"vendorCode": "ErpVendorCode",
"name": "name",
"isExcessGrnAllowed": true,
"address": {
"name": "vendor",
"line1": "address line 1",
"line2": "address line 2",
"line3": "address line 3",
"city": "Bengaluru",
"state": "Karnataka",
"zip": "560076",
"country": "INDIA",
"email": "email.com",
"phone": "9999999999"
},
"priority": 1
}
Â
Â
Â
Parameter Name | Data Type | Description | Mandatory |
---|---|---|---|
| String | Code used by ERP to identify vendors | yes |
| String | Name of vendor | yes |
| boolean | isExcessGrnAllowed for the supplier | No |
| Object | Address of vendor | yes |
| String | Name of vendor | yes |
| String | 1st line of vendor’s address | yes |
| String | 2nd line of vendor’s address | no |
| String | 3rd line of vendor’s address | no |
| String | City of vendor | yes |
| String | State of vendor | yes |
| String | ZIP/Pin code of vendor | yes |
| String | Country of vendor | yes |
| String | Email of vendor | yes |
| String | Phone Number of vendor | no |
| Integer | The priority of the vendor during picking of orders Highest priority -1 and lowest - 5 null value will be considered as priority 3 in OMS Â | no |
Â
Response
EmptyBody
Â
HttpStatus : 200