StarterTemplate ASP.NET Host

<back to all web services

RequestDeptsAll

Depts service

The following routes are available for this service:
GET/service/api/v1/deptsReturns the list of depts
Parameters:
NameParameterData TypeRequiredDescription
OffsetqueryintNoThe number of departments to skip before counting the returned departments
LimitqueryintNoThe maximum number of departments to return
FilterquerystringNoThe filter expression to apply to the list of departments

To override the Content-type in your clients HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /xml/reply/RequestDeptsAll HTTP/1.1 
Host: rest.qacomplete.smartbear.com 
Content-Type: application/xml
Content-Length: length

<RequestDeptsAll xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SwpStack.Service.Entity.Depts">
  <Filter>String</Filter>
  <Limit>0</Limit>
  <Offset>0</Offset>
</RequestDeptsAll>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ResponseDeptsCollection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SwpStack.Service.Entity.Depts">
  <Metadata i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/SwpStack.Service.Entity.Common" />
  <Results xmlns:d2p1="http://schemas.datacontract.org/2004/07/SwpStack.Service.Entity.Depts" xmlns="http://schemas.datacontract.org/2004/07/SwpStack.Service.Entity.Common">
    <d2p1:ResponseDeptSingle>
      <d2p1:DateCreated>0001-01-01T00:00:00</d2p1:DateCreated>
      <d2p1:DateUpdated>0001-01-01T00:00:00</d2p1:DateUpdated>
      <d2p1:DeptName>String</d2p1:DeptName>
      <d2p1:Id>0</d2p1:Id>
    </d2p1:ResponseDeptSingle>
  </Results>
</ResponseDeptsCollection>