POST GetBranchList

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
request
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "user": "sample string 1",
  "token": "sample string 2",
  "function": 0
}

application/x-www-form-urlencoded

Sample:

Sample not available.

application/xml, text/xml

Sample:
<GetBranchListRequest>
  <token>sample string 2</token>
  <function>AddCleanBag</function>
  <user>sample string 1</user>
</GetBranchListRequest>

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "data": [
    {
      "branch": 1
    },
    {
      "branch": 1
    },
    {
      "branch": 1
    }
  ],
  "valid": true,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<GetBranchListResponse>
  <valid>true</valid>
  <message>sample string 2</message>
  <data>
    <Branch>
      <branch>1</branch>
    </Branch>
    <Branch>
      <branch>1</branch>
    </Branch>
    <Branch>
      <branch>1</branch>
    </Branch>
  </data>
</GetBranchListResponse>