GET api/branch?syncStamp={syncStamp}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
syncStamp

date

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Branch
NameDescriptionTypeAdditional information
BranchCode

string

None.

BranchName

string

None.

Inactive

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "BranchCode": "sample string 1",
    "BranchName": "sample string 2",
    "Inactive": true
  },
  {
    "BranchCode": "sample string 1",
    "BranchName": "sample string 2",
    "Inactive": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfBranch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccredoWeb.Model.CO">
  <Branch>
    <BranchCode>sample string 1</BranchCode>
    <BranchName>sample string 2</BranchName>
    <Inactive>true</Inactive>
  </Branch>
  <Branch>
    <BranchCode>sample string 1</BranchCode>
    <BranchName>sample string 2</BranchName>
    <Inactive>true</Inactive>
  </Branch>
</ArrayOfBranch>