Vendor

Gets all active vendors.

get
Responses
200

OK

get
/vendor/vendors
GET /vendor/vendors HTTP/1.1
Host: 
Accept: */*
[
  {
    "customerId": 1,
    "vendorProductGroupId": 1,
    "brandId": 1,
    "vendorName": "text",
    "vendorOrgNo": "text",
    "vendorExternalReference": [
      {
        "key": "text",
        "value": "text"
      }
    ]
  }
]

Search for Vendors by id or external reference.

post
Body
vendorIdinteger · int32[] | nullableOptional
Responses
200

OK

post
/vendor/search
POST /vendor/search HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 74

{
  "vendorId": [
    1
  ],
  "vendorExternalReference": [
    {
      "key": "text",
      "value": "text"
    }
  ]
}
[
  {
    "customerId": 1,
    "vendorProductGroupId": 1,
    "brandId": 1,
    "vendorName": "text",
    "vendorOrgNo": "text",
    "vendorExternalReference": [
      {
        "key": "text",
        "value": "text"
      }
    ]
  }
]

Last updated