POST api/Vendor/LoadVendorReviewsById

Request Information

URI Parameters

None.

Body Parameters

VendorLoginViewModel
NameDescriptionTypeAdditional information
password

string

None.

username

string

None.

logininfoid

integer

None.

isexist

boolean

None.

vendorrolecode

string

None.

vendorrolename

string

None.

vendorroleid

integer

None.

token

string

None.

istemppassword

boolean

None.

emailaddress

string

None.

errorCode

integer

None.

vendorinfoid

integer

None.

vendorname

string

None.

Request Formats

application/json, text/json

Sample:
{
  "password": "sample string 1",
  "username": "sample string 2",
  "logininfoid": 3,
  "isexist": true,
  "vendorrolecode": "sample string 5",
  "vendorrolename": "sample string 6",
  "vendorroleid": 7,
  "token": "sample string 8",
  "istemppassword": true,
  "emailaddress": "sample string 10",
  "errorCode": 11,
  "vendorinfoid": 12,
  "vendorname": "sample string 13"
}

application/xml, text/xml

Sample:
<VendorLoginViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/selfhatch.Models">
  <emailaddress>sample string 10</emailaddress>
  <errorCode>11</errorCode>
  <isexist>true</isexist>
  <istemppassword>true</istemppassword>
  <logininfoid>3</logininfoid>
  <password>sample string 1</password>
  <token>sample string 8</token>
  <username>sample string 2</username>
  <vendorinfoid>12</vendorinfoid>
  <vendorname>sample string 13</vendorname>
  <vendorrolecode>sample string 5</vendorrolecode>
  <vendorroleid>7</vendorroleid>
  <vendorrolename>sample string 6</vendorrolename>
</VendorLoginViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResultViewModel
NameDescriptionTypeAdditional information
status

boolean

None.

message

string

None.

data

Object

None.

errorCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "message": "sample string 2",
  "data": {},
  "errorCode": 4
}

application/xml, text/xml

Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/selfhatch.Models">
  <data />
  <errorCode>4</errorCode>
  <message>sample string 2</message>
  <status>true</status>
</HttpResultViewModel>