Get All Vendors - Sellercloud API Docs

Overview

In order to get information for many Vendors in a single request, you can consume the endpoint presented in this article. In order to do that, you must:

For information on how you can authenticate, see: Authentication

As soon as you do authentication and receive a valid token, it needs to be passed to the call.

Endpoint

Example for such endpoint for XX server:

https://xx.api.sellercloud.com/rest/api/Vendors

For your server endpoint will be:

​https://{your_server_id}.api.sellercloud.com/rest/api/Vendors

Request

Parameters Data Type Description Is Required
vendorIDs List List of vendor IDs No
names List List of vendor names No
email string Vendor email No
activeStatus integer Active status. Possible values:
0 – Inactive
1- Active
No
pageNumber integer Number of page No
pageSize integer Number of vendors per page No

Response

Response Body Format

{
  "Items": [
    {
      "ID": 0,
      "Name": "string",
      "Email": "string",
      "IsDefault": true
    }
  ],
  "TotalResults": 0
}