Create Vendor Master API (Beta)
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": "VENDOR123",
"address": {
"city": "Metropolis",
"country": "India",
"email": "xyz@gmail.com",
"line1": "Address line 1",
"line2": "Address line 2",
"line3": "Address line 3",
"name": "John Doe",
"phone": "999999999",
"state": "Karnataka",
"zip": "560102"
},
"name": "Vendor Name",
"isExcessGrnAllowed": true,
"isAsnExpected": false,
"isCDSampleQCAllowed" : true,
"priority": 1,
"isStorageSampleQcAllowed": true,
"minStorageSampleInspectPercent": 5,
"minStoragePassPercent": 5,
"minCdSampleInspectPercent": 5,
"minCdPassPercent": 5
}
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 |
| boolean |
| Yes |
| 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 |
| Boolean | Whether storage sample QC is allowed for the vendor | No |
| Boolean | Whether sample QC allowed for Crossdock boxes | No |
| Integer | Minimum percentage of storage samples to be inspected | No |
| Integer | Minimum percentage of storage samples that must pass QC | No |
| Integer | Minimum percentage of CD (cross-dock) samples to be inspected | No |
| Integer | Minimum percentage of CD samples that must pass QC | No |
Response Body
EmptyBody
HttpStatus : 200