GET api/WebApiOdata/GetAllRetailers?providerId={providerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
providerId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ManageRetailersViewModel
NameDescriptionTypeAdditional information
ProviderID

integer

None.

Name

string

None.

Code

string

None.

StoreURL

string

None.

CreatedDate

date

None.

Status

boolean

None.

ProviderTypeID

byte

None.

StorePhysicalName

string

None.

Deleted

boolean

None.

ModifiedDate

date

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "ProviderID": 1,
    "Name": "sample string 2",
    "Code": "sample string 3",
    "StoreURL": "sample string 4",
    "CreatedDate": "9/19/2024",
    "Status": true,
    "ProviderTypeID": 64,
    "StorePhysicalName": "sample string 7",
    "Deleted": true,
    "ModifiedDate": "9/19/2024"
  },
  {
    "ProviderID": 1,
    "Name": "sample string 2",
    "Code": "sample string 3",
    "StoreURL": "sample string 4",
    "CreatedDate": "9/19/2024",
    "Status": true,
    "ProviderTypeID": 64,
    "StorePhysicalName": "sample string 7",
    "Deleted": true,
    "ModifiedDate": "9/19/2024"
  }
]

application/xml, text/xml

Sample:
<ArrayOfManageRetailersViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.ViewModels.ManageRetailers">
  <ManageRetailersViewModel>
    <Code>sample string 3</Code>
    <CreatedDate>2024-09-19T08:45:56.3959052+00:00</CreatedDate>
    <Deleted>true</Deleted>
    <ModifiedDate>2024-09-19T08:45:56.3959052+00:00</ModifiedDate>
    <Name>sample string 2</Name>
    <ProviderID>1</ProviderID>
    <ProviderTypeID>64</ProviderTypeID>
    <Status>true</Status>
    <StorePhysicalName>sample string 7</StorePhysicalName>
    <StoreURL>sample string 4</StoreURL>
  </ManageRetailersViewModel>
  <ManageRetailersViewModel>
    <Code>sample string 3</Code>
    <CreatedDate>2024-09-19T08:45:56.3959052+00:00</CreatedDate>
    <Deleted>true</Deleted>
    <ModifiedDate>2024-09-19T08:45:56.3959052+00:00</ModifiedDate>
    <Name>sample string 2</Name>
    <ProviderID>1</ProviderID>
    <ProviderTypeID>64</ProviderTypeID>
    <Status>true</Status>
    <StorePhysicalName>sample string 7</StorePhysicalName>
    <StoreURL>sample string 4</StoreURL>
  </ManageRetailersViewModel>
</ArrayOfManageRetailersViewModel>