Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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 AssureIncreff Omni.

Request body

Code Block
languagejson
{
  "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
}

...