PUT api/content/v4/getcustomerregions

Request Information

URI Parameters

None.

Body Parameters

APICustomerRegionsRequest
NameDescriptionTypeAdditional information
CustomerId

integer

None.

PageNumber

integer

None.

PageSize

integer

None.

SectionId

integer

None.

LanguageId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "PageNumber": 2,
  "PageSize": 3,
  "SectionId": 4,
  "LanguageId": 5
}

application/xml, text/xml

Sample:
<APICustomerRegionsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <CustomerId>1</CustomerId>
  <LanguageId>5</LanguageId>
  <PageNumber>2</PageNumber>
  <PageSize>3</PageSize>
  <SectionId>4</SectionId>
</APICustomerRegionsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APICommonWrapperOfAPIRegionResponse
NameDescriptionTypeAdditional information
Status

HttpStatusCode

None.

Message

string

None.

Data

APIRegionResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {
    "List": [
      {
        "Id": 1,
        "Name": "sample string 2",
        "Image": "sample string 3",
        "Description": "sample string 4",
        "CreatedDate": 5,
        "TotalBreweries": 6
      },
      {
        "Id": 1,
        "Name": "sample string 2",
        "Image": "sample string 3",
        "Description": "sample string 4",
        "CreatedDate": 5,
        "TotalBreweries": 6
      }
    ],
    "TotalCounts": 1
  }
}

application/xml, text/xml

Sample:
<APICommonWrapperOfAPIRegionResponseZdSfSp5S xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <Data>
    <List>
      <APIRegion>
        <CreatedDate>5</CreatedDate>
        <Description>sample string 4</Description>
        <Id>1</Id>
        <Image>sample string 3</Image>
        <Name>sample string 2</Name>
        <TotalBreweries>6</TotalBreweries>
      </APIRegion>
      <APIRegion>
        <CreatedDate>5</CreatedDate>
        <Description>sample string 4</Description>
        <Id>1</Id>
        <Image>sample string 3</Image>
        <Name>sample string 2</Name>
        <TotalBreweries>6</TotalBreweries>
      </APIRegion>
    </List>
    <TotalCounts>1</TotalCounts>
  </Data>
  <Message>sample string 1</Message>
  <Status>Continue</Status>
</APICommonWrapperOfAPIRegionResponseZdSfSp5S>