POST api/getRefNO

Request Information

URI Parameters

None.

Body Parameters

Jsonparams
NameDescriptionTypeAdditional information
jsonstring

string

None.

Request Formats

application/json, text/json

Sample:
{
  "jsonstring": "sample string 1"
}

application/xml, text/xml

Sample:
<Jsonparams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HantidhowrWebApiV1.Models">
  <jsonstring>sample string 1</jsonstring>
</Jsonparams>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetRefNoOut
NameDescriptionTypeAdditional information
refno

string

None.

RefNoList

Collection of RefNoListOut

None.

UserList

Collection of UserListOut

None.

Response Formats

application/json, text/json

Sample:
{
  "RefNoList": [
    {
      "DayRefNo": "sample string 1"
    },
    {
      "DayRefNo": "sample string 1"
    }
  ],
  "UserList": [
    {
      "Userid": "sample string 1",
      "UserName": "sample string 2"
    },
    {
      "Userid": "sample string 1",
      "UserName": "sample string 2"
    }
  ],
  "refno": "sample string 1"
}

application/xml, text/xml

Sample:
<GetRefNoOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HantidhowrWebApiV1.Models">
  <RefNoList>
    <RefNoListOut>
      <DayRefNo>sample string 1</DayRefNo>
    </RefNoListOut>
    <RefNoListOut>
      <DayRefNo>sample string 1</DayRefNo>
    </RefNoListOut>
  </RefNoList>
  <UserList>
    <UserListOut>
      <UserName>sample string 2</UserName>
      <Userid>sample string 1</Userid>
    </UserListOut>
    <UserListOut>
      <UserName>sample string 2</UserName>
      <Userid>sample string 1</Userid>
    </UserListOut>
  </UserList>
  <refno>sample string 1</refno>
</GetRefNoOut>