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,
  "priority": 1,
  "isStorageSampleQcAllowed": true,
  "minStorageSampleInspectPercent": 5,
  "minStoragePassPercent": 5,
  "minCdSampleInspectPercent": 5,
  "minCdPassPercent": 5
}
Parameter Name Data Type Description Mandatory
vendorCode String Code used by ERP to identify vendors yes
name String Name of vendor yes
isExcessGrnAllowed boolean isExcessGrnAllowed for the supplier No
isAsnExpected boolean isAsnExpected for the supplier yes
address Object Address of vendor yes
address.name String Name of vendor yes
address.line1 String 1st line of vendor’s address yes
address.line2 String 2nd line of vendor’s address no
address.line3 String 3rd line of vendor’s address no
address.city String City of vendor yes
address.state String State of vendor yes
address.zip String ZIP/Pin code of vendor yes
address.country String Country of vendor yes
address.email String Email of vendor yes
address.phone String Phone Number of vendor No
priority 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
isStorageSampleQcAllowed Boolean Whether storage sample QC is allowed for the vendor No
minStorageSampleInspectPercent Integer Minimum percentage of storage samples to be inspected No
minStoragePassPercent Integer Minimum percentage of storage samples that must pass QC No
minCdSampleInspectPercent Integer Minimum percentage of CD (cross-dock) samples to be inspected No
minCdPassPercent Integer Minimum percentage of CD samples that must pass QC No

Response

EmptyBody

HttpStatus : 200